Changeset 7f84e22 in sasview
- Timestamp:
- Jan 10, 2011 12:51:41 PM (14 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:
- 691643c
- Parents:
- 3658abed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/local_perspectives/plotting/plotting.py
r32c0841 r7f84e22 17 17 from sans.guicomm.events import StatusEvent 18 18 19 from sans.guiframe.plugin_base import PluginBase 19 20 20 class Plugin :21 class Plugin(PluginBase): 21 22 """ 22 23 Plug-in class to be instantiated by the GUI manager 23 24 """ 24 25 25 def __init__(self): 26 """ 27 Initialize the plug-in 28 """ 29 ## Plug-in name 30 self.sub_menu = "Plotting" 31 32 ## Reference to the parent window 33 self.parent = None 34 35 ## List of panels for the simulation perspective (names) 36 self.perspective = [] 37 26 def __init__(self, standalone=False): 27 PluginBase.__init__(self, name="Plotting", standalone=standalone) 28 38 29 ## Plot panels 39 30 self.plot_panels = [] … … 66 57 return [] 67 58 68 def get_perspective(self):69 """70 Get the list of panel names for this perspective71 """72 return self.perspective73 74 def on_perspective(self, event):75 """76 Call back function for the perspective menu item.77 We notify the parent window that the perspective78 has changed.79 @param event: menu event80 """81 self.parent.set_perspective(self.perspective)82 83 def post_init(self):84 """85 Post initialization call back to close the loose ends86 [Somehow openGL needs this call]87 """88 pass89 90 59 def _on_show_panel(self, event): 91 60 """show plug-in panel"""
Note: See TracChangeset
for help on using the changeset viewer.