Changeset ac7be54 in sasview for src/sas/guiframe
- Timestamp:
- May 8, 2015 2:27:08 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:
- 5e880fe1
- Parents:
- c22c5e3
- Location:
- src/sas/guiframe
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/guiframe/gui_manager.py
r765e47c rac7be54 570 570 def on_batch_selection(self, event=None): 571 571 """ 572 :param event: contains parameter enable . when enable is set to True573 the application is in Batch mode574 else the application is default mode(single mode)572 :param event: contains parameter enable. When enable is set to True 573 the application is in Batch mode otherwise the application is 574 in Single mode. 575 575 """ 576 576 if event is not None: … … 2898 2898 2899 2899 :param name: window_name in AuiPaneInfo 2900 : 2900 :return: AuiPaneInfo of the name 2901 2901 """ 2902 2902 for panel in self.plot_panels.values(): -
src/sas/guiframe/gui_statusbar.py
r4342107f rac7be54 22 22 CONSOLE_WIDTH = 500 23 23 CONSOLE_HEIGHT = 300 24 FRAME_ICON = wx.Icon(GUIFRAME_ICON.FRAME_ICON_PATH, wx.BITMAP_TYPE_ICO)25 24 26 25 if sys.platform.count("win32") > 0: … … 186 185 except: 187 186 try: 187 FRAME_ICON = wx.Icon(GUIFRAME_ICON.FRAME_ICON_PATH, 188 wx.BITMAP_TYPE_ICO) 188 189 self.frame.SetIcon(FRAME_ICON) 189 190 except: -
src/sas/guiframe/local_perspectives/plotting/graphAppearance.py
rb5de88e rac7be54 5 5 Dialog for general graph appearance 6 6 7 8 /** 9 This software was developed by Institut Laue-Langevin as part of 10 Distributed Data Analysis of Neutron Scattering Experiments (DANSE). 11 12 Copyright 2012 Institut Laue-Langevin 13 14 **/ 15 16 7 This software was developed by Institut Laue-Langevin as part of 8 Distributed Data Analysis of Neutron Scattering Experiments (DANSE). 9 10 Copyright 2012 Institut Laue-Langevin 17 11 """ 18 12 -
src/sas/guiframe/panel_base.py
r79492222 rac7be54 61 61 def on_batch_selection(self, event): 62 62 """ 63 :param event: contains parameter enable . when enable is set to True64 the application is in Batch mode65 else the application is default mode(single mode)63 :param event: contains parameter enable. When enable is set to True 64 the application is in Batch mode otherwise the application is 65 in Single mode. 66 66 """ 67 67 self.batch_on = event.enable … … 69 69 """ 70 70 return an xml node containing state of the panel 71 71 that guiframe can write to file 72 72 """ 73 73 return None
Note: See TracChangeset
for help on using the changeset viewer.