[b5ca223] | 1 | import 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 | # print the messages on statusbar |
---|
| 9 | (StatusEvent, EVT_STATUS) = wx.lib.newevent.NewEvent() |
---|
| 10 | #create a panel slicer |
---|
| 11 | (SlicerPanelEvent, EVT_SLICER_PANEL) = wx.lib.newevent.NewEvent() |
---|
| 12 | #print update paramaters for panel slicer |
---|
| 13 | (SlicerParamUpdateEvent, EVT_SLICER_PARS_UPDATE) = wx.lib.newevent.NewEvent() |
---|
| 14 | #update the slicer from the panel |
---|
| 15 | (SlicerParameterEvent, EVT_SLICER_PARS) = wx.lib.newevent.NewEvent() |
---|
| 16 | #slicer event |
---|
| 17 | (SlicerEvent, EVT_SLICER) = wx.lib.newevent.NewEvent() |
---|
[13a63ab] | 18 | ## event that that destroy panel name in the datapanel combobox |
---|
| 19 | (DeletePlotPanelEvent, EVT_DELETE_PLOTPANEL) = wx.lib.newevent.NewEvent() |
---|
[b5ca223] | 20 | ##event that allow to add more that to the same plot |
---|
| 21 | (AddManyDataEvent, EVT_ADD_MANY_DATA) = wx.lib.newevent.NewEvent() |
---|
| 22 | ##event for the panel on focus |
---|
| 23 | (PanelOnFocusEvent, EVT_PANEL_ON_FOCUS) = wx.lib.newevent.NewEvent() |
---|
[4e4d3bb] | 24 | #book mark event |
---|
| 25 | (AppendBookmarkEvent, EVT_APPEND_BOOKMARK) = wx.lib.newevent.NewEvent() |
---|
[a03d419] | 26 | #event to ask dataloader plugin to load data if dataloader plugin exist |
---|
| 27 | (NewLoadDataEvent, EVT_NEW_LOAD_DATA) = wx.lib.newevent.NewEvent() |
---|
[c958e30] | 28 | #event to toggle from single model to batch |
---|
| 29 | (NewBatchEvent, EVT_NEW_BATCH) = wx.lib.newevent.NewEvent() |
---|
[03314e7] | 30 | |
---|