Changeset c17760d in sasview for sansguiframe/src


Ignore:
Timestamp:
Aug 31, 2011 11:35:18 AM (13 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
9680906d
Parents:
49a470d
Message:

consistently uses Upper case

Location:
sansguiframe/src/sans/guiframe/local_perspectives/plotting
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter1D.py

    rfe48fcc rc17760d  
    432432        if self.position != None: 
    433433            id = wx.NewId() 
    434             self._slicerpop.Append(id, '&Add text') 
     434            self._slicerpop.Append(id, '&Add Text') 
    435435            wx.EVT_MENU(self, id, self._on_addtext) 
    436436            id = wx.NewId() 
    437             self._slicerpop.Append(id, '&Remove text') 
     437            self._slicerpop.Append(id, '&Remove Text') 
    438438            wx.EVT_MENU(self, id, self._on_removetext) 
    439439        id = wx.NewId() 
    440         self._slicerpop.Append(id, '&Change scale') 
     440        self._slicerpop.Append(id, '&Change Scale') 
    441441        wx.EVT_MENU(self, id, self._onProperties) 
    442442        id = wx.NewId() 
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter2D.py

    r49a470d rc17760d  
    265265        id = wx.NewId() 
    266266        name = plot.name 
    267         slicerpop.Append(id, "&Save as a file (DAT)" ) 
     267        slicerpop.Append(id, "&Save as a File (DAT)" ) 
    268268        self.action_ids[str(id)] = plot 
    269269        wx.EVT_MENU(self, id, self._onSave) 
     
    289289             
    290290            id = wx.NewId() 
    291             slicerpop.Append(id, '&Perform circular average') 
     291            slicerpop.Append(id, '&Perform Circular Average') 
    292292            wx.EVT_MENU(self, id, self.onCircular) \ 
    293293            # For Masked Data 
    294294            if not plot.mask.all(): 
    295295                id = wx.NewId() 
    296                 slicerpop.Append(id, '&Masked circular average') 
     296                slicerpop.Append(id, '&Masked Circular Average') 
    297297                wx.EVT_MENU(self, id, self.onMaskedCircular)  
    298298            id = wx.NewId() 
    299             slicerpop.Append(id, '&Sector [Q view]') 
     299            slicerpop.Append(id, '&Sector [Q View]') 
    300300            wx.EVT_MENU(self, id, self.onSectorQ)  
    301301            id = wx.NewId() 
    302             slicerpop.Append(id, '&Annulus [Phi view ]') 
     302            slicerpop.Append(id, '&Annulus [Phi View ]') 
    303303            wx.EVT_MENU(self, id, self.onSectorPhi)  
    304304            id = wx.NewId() 
     
    306306            wx.EVT_MENU(self, id, self.onBoxSum)  
    307307            id = wx.NewId() 
    308             slicerpop.Append(id, '&Box averaging in Qx') 
     308            slicerpop.Append(id, '&Box Averaging in Qx') 
    309309            wx.EVT_MENU(self, id, self.onBoxavgX)  
    310310            id = wx.NewId() 
    311             slicerpop.Append(id, '&Box averaging in Qy') 
     311            slicerpop.Append(id, '&Box Averaging in Qy') 
    312312            wx.EVT_MENU(self, id, self.onBoxavgY)  
    313313            if self.slicer != None: 
    314314                id = wx.NewId() 
    315                 slicerpop.Append(id, '&Clear slicer') 
     315                slicerpop.Append(id, '&Clear Slicer') 
    316316                wx.EVT_MENU(self, id,  self.onClearSlicer)  
    317317                if self.slicer.__class__.__name__  != "BoxSum": 
     
    330330        wx.EVT_MENU(self, id, self._onEditDetector) 
    331331        id = wx.NewId() 
    332         slicerpop.Append(id, '&Toggle Linear/Log scale') 
     332        slicerpop.Append(id, '&Toggle Linear/Log Scale') 
    333333        wx.EVT_MENU(self, id, self._onToggleScale)  
    334334        pos = event.GetPosition() 
Note: See TracChangeset for help on using the changeset viewer.