source: sasview/src/sas/sasgui/guiframe/events.py @ 20fa5fe

magnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 20fa5fe was 20fa5fe, checked in by Stuart Prescott <stuart@…>, 6 years ago

Fix lots more typos in comments and docs

  • Property mode set to 100644
File size: 1.7 KB
Line 
1import wx.lib.newevent
2#send  data to data manager
3(NewStoreDataEvent, EVT_NEW_STORE_DATA) = wx.lib.newevent.NewEvent()
4# send data to other perspectives
5(NewLoadedDataEvent, EVT_NEW_LOADED_DATA) = wx.lib.newevent.NewEvent()
6# plot data
7(NewPlotEvent, EVT_NEW_PLOT) = wx.lib.newevent.NewEvent()
8# plot Qrange
9(PlotQrangeEvent, EVT_PLOT_QRANGE) = wx.lib.newevent.NewEvent()
10# set plot limits
11(PlotLimitEvent, EVT_PLOT_LIM) = wx.lib.newevent.NewEvent()
12# print the messages on statusbar
13(StatusEvent,  EVT_STATUS)   = wx.lib.newevent.NewEvent()
14#create a panel slicer
15(SlicerPanelEvent, EVT_SLICER_PANEL)   = wx.lib.newevent.NewEvent()
16#print update parameers for panel slicer
17(SlicerParamUpdateEvent, EVT_SLICER_PARS_UPDATE)   = wx.lib.newevent.NewEvent()
18#update the slicer from the panel
19(SlicerParameterEvent, EVT_SLICER_PARS)   = wx.lib.newevent.NewEvent()
20#slicer event
21(SlicerEvent, EVT_SLICER)   = wx.lib.newevent.NewEvent()
22## event that that destroy panel name in the datapanel combobox
23(DeletePlotPanelEvent, EVT_DELETE_PLOTPANEL)   = wx.lib.newevent.NewEvent()
24##event that allow to add more that to the same plot
25(AddManyDataEvent, EVT_ADD_MANY_DATA)   = wx.lib.newevent.NewEvent()
26##event for the panel on focus
27(PanelOnFocusEvent, EVT_PANEL_ON_FOCUS)   = wx.lib.newevent.NewEvent()
28#book mark event
29(AppendBookmarkEvent, EVT_APPEND_BOOKMARK) = wx.lib.newevent.NewEvent()
30#event to ask dataloader plugin to load data if dataloader plugin exist
31(NewLoadDataEvent, EVT_NEW_LOAD_DATA) = wx.lib.newevent.NewEvent()
32#event to toggle from single model to  batch
33(NewBatchEvent, EVT_NEW_BATCH) = wx.lib.newevent.NewEvent()
34##color event
35(NewColorEvent, EVT_NEW_COLOR) = wx.lib.newevent.NewEvent()
36##change category event
37(ChangeCategoryEvent, EVT_CATEGORY) = wx.lib.newevent.NewEvent()
Note: See TracBrowser for help on using the repository browser.