Changeset c17760d in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Aug 31, 2011 1:35:18 PM (13 years ago)
- 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
- 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 432 432 if self.position != None: 433 433 id = wx.NewId() 434 self._slicerpop.Append(id, '&Add text')434 self._slicerpop.Append(id, '&Add Text') 435 435 wx.EVT_MENU(self, id, self._on_addtext) 436 436 id = wx.NewId() 437 self._slicerpop.Append(id, '&Remove text')437 self._slicerpop.Append(id, '&Remove Text') 438 438 wx.EVT_MENU(self, id, self._on_removetext) 439 439 id = wx.NewId() 440 self._slicerpop.Append(id, '&Change scale')440 self._slicerpop.Append(id, '&Change Scale') 441 441 wx.EVT_MENU(self, id, self._onProperties) 442 442 id = wx.NewId() -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter2D.py
r49a470d rc17760d 265 265 id = wx.NewId() 266 266 name = plot.name 267 slicerpop.Append(id, "&Save as a file (DAT)" )267 slicerpop.Append(id, "&Save as a File (DAT)" ) 268 268 self.action_ids[str(id)] = plot 269 269 wx.EVT_MENU(self, id, self._onSave) … … 289 289 290 290 id = wx.NewId() 291 slicerpop.Append(id, '&Perform circular average')291 slicerpop.Append(id, '&Perform Circular Average') 292 292 wx.EVT_MENU(self, id, self.onCircular) \ 293 293 # For Masked Data 294 294 if not plot.mask.all(): 295 295 id = wx.NewId() 296 slicerpop.Append(id, '&Masked circular average')296 slicerpop.Append(id, '&Masked Circular Average') 297 297 wx.EVT_MENU(self, id, self.onMaskedCircular) 298 298 id = wx.NewId() 299 slicerpop.Append(id, '&Sector [Q view]')299 slicerpop.Append(id, '&Sector [Q View]') 300 300 wx.EVT_MENU(self, id, self.onSectorQ) 301 301 id = wx.NewId() 302 slicerpop.Append(id, '&Annulus [Phi view ]')302 slicerpop.Append(id, '&Annulus [Phi View ]') 303 303 wx.EVT_MENU(self, id, self.onSectorPhi) 304 304 id = wx.NewId() … … 306 306 wx.EVT_MENU(self, id, self.onBoxSum) 307 307 id = wx.NewId() 308 slicerpop.Append(id, '&Box averaging in Qx')308 slicerpop.Append(id, '&Box Averaging in Qx') 309 309 wx.EVT_MENU(self, id, self.onBoxavgX) 310 310 id = wx.NewId() 311 slicerpop.Append(id, '&Box averaging in Qy')311 slicerpop.Append(id, '&Box Averaging in Qy') 312 312 wx.EVT_MENU(self, id, self.onBoxavgY) 313 313 if self.slicer != None: 314 314 id = wx.NewId() 315 slicerpop.Append(id, '&Clear slicer')315 slicerpop.Append(id, '&Clear Slicer') 316 316 wx.EVT_MENU(self, id, self.onClearSlicer) 317 317 if self.slicer.__class__.__name__ != "BoxSum": … … 330 330 wx.EVT_MENU(self, id, self._onEditDetector) 331 331 id = wx.NewId() 332 slicerpop.Append(id, '&Toggle Linear/Log scale')332 slicerpop.Append(id, '&Toggle Linear/Log Scale') 333 333 wx.EVT_MENU(self, id, self._onToggleScale) 334 334 pos = event.GetPosition()
Note: See TracChangeset
for help on using the changeset viewer.