Changeset 225aca8 in sasview for src/sas/guiframe/local_perspectives
- Timestamp:
- Jul 28, 2015 12:14:38 PM (10 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:
- a910c788
- Parents:
- ae2a197 (diff), d06c34c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/guiframe/local_perspectives
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/local_perspectives/data_loader/data_loader.py
rf76bf17 rf21d496 41 41 class Plugin(PluginBase): 42 42 43 def __init__(self , standalone=False):44 PluginBase.__init__(self, name="DataLoader" , standalone=standalone)43 def __init__(self): 44 PluginBase.__init__(self, name="DataLoader") 45 45 # Default location 46 46 self._default_save_location = DEFAULT_OPEN_FOLDER -
src/sas/guiframe/local_perspectives/plotting/plotting.py
rc039589 rf21d496 36 36 """ 37 37 38 def __init__(self , standalone=False):39 PluginBase.__init__(self, name="Plotting" , standalone=standalone)38 def __init__(self): 39 PluginBase.__init__(self, name="Plotting") 40 40 41 41 ## Plot panels -
src/sas/guiframe/local_perspectives/plotting/Plotter1D.py
rb99a4552 r098f3d2 564 564 self._slicerpop.Append(wx_id, '&Print Image', 'Print image ') 565 565 wx.EVT_MENU(self, wx_id, self.onPrint) 566 wx_id = wx.NewId()567 self._slicerpop.Append(wx_id, '&Print Preview', 'Print preview')568 wx.EVT_MENU(self, wx_id, self.onPrinterPreview)569 566 570 567 wx_id = wx.NewId() -
src/sas/guiframe/local_perspectives/plotting/Plotter2D.py
rc039589 r098f3d2 300 300 301 301 wx_id = wx.NewId() 302 slicerpop.Append(wx_id, '&Print Preview', 'Print preview')303 wx.EVT_MENU(self, wx_id, self.onPrinterPreview)304 305 wx_id = wx.NewId()306 302 slicerpop.Append(wx_id, '&Copy to Clipboard', 'Copy to the clipboard') 307 303 wx.EVT_MENU(self, wx_id, self.OnCopyFigureMenu) -
src/sas/guiframe/local_perspectives/plotting/SimplePlot.py
rb40ad40 r098f3d2 58 58 slicerpop.Append(wx_id, '&Print Image', 'Print image') 59 59 wx.EVT_MENU(self, wx_id, self.onPrint) 60 61 wx_id = wx.NewId()62 slicerpop.Append(wx_id, '&Print Preview', 'Print preview')63 wx.EVT_MENU(self, wx_id, self.onPrinterPreview)64 60 65 61 wx_id = wx.NewId() … … 234 230 wx.EVT_MENU(self, id, self.on_print_image) 235 231 236 id = wx.NewId()237 item = wx.MenuItem(menu, id, "&Print Preview")238 item.SetBitmap(preview_bmp)239 menu.AppendItem(item)240 wx.EVT_MENU(self, id, self.on_print_preview)241 242 232 menu.AppendSeparator() 243 233 id = wx.NewId()
Note: See TracChangeset
for help on using the changeset viewer.