Changeset 20fa5fe in sasview for src/sas/sasgui/guiframe
- Timestamp:
- Nov 2, 2017 3:21:47 AM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- b6b81a3
- Parents:
- f4775563
- Location:
- src/sas/sasgui/guiframe
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/guiframe/data_processor.py
ra1b8fee r20fa5fe 758 758 cell pop up context by right clicking on a cell and gives the 759 759 option to cut, paste, and clear. This will probably be removed in 760 future versions and is being super ceded by more traditional cut and760 future versions and is being superseded by more traditional cut and 761 761 paste options. 762 762 """ … … 800 800 THIS METHOD IS NOT CURRENTLY USED. it is part of right click cell 801 801 context menu which is being removed. This will probably be removed in 802 future versions and is being super ceded by more traditional cut and802 future versions and is being superseded by more traditional cut and 803 803 paste options 804 804 """ … … 812 812 THIS METHOD IS NOT CURRENTLY USED. it is part of right click cell 813 813 context menu which is being removed. This will probably be removed in 814 future versions and is being super ceded by more traditional cut and814 future versions and is being superseded by more traditional cut and 815 815 paste options 816 816 """ … … 828 828 THIS METHOD IS NOT CURRENTLY USED. it is part of right click cell 829 829 context menu which is being removed. This will probably be removed in 830 future versions and is being super ceded by more traditional cut and830 future versions and is being superseded by more traditional cut and 831 831 paste options 832 832 """ … … 1233 1233 """ 1234 1234 Get object represented by the given cells and plot them. Basically 1235 plot the colum in y vs the column in x.1235 plot the column in y vs the column in x. 1236 1236 """ 1237 1237 … … 1961 1961 selection_sizer.Add(self.save_to_file, (iy, ix), 1962 1962 (1, 1), wx.LEFT | wx.EXPAND | wx.ADJUST_MINSIZE, 15) 1963 #contruction the sizer conta ning button1963 #contruction the sizer containing button 1964 1964 button_sizer.Add((20, 20), 1, wx.EXPAND | wx.ADJUST_MINSIZE, 0) 1965 1965 -
src/sas/sasgui/guiframe/events.py
r959eb01 r20fa5fe 14 14 #create a panel slicer 15 15 (SlicerPanelEvent, EVT_SLICER_PANEL) = wx.lib.newevent.NewEvent() 16 #print update param aters for panel slicer16 #print update parameers for panel slicer 17 17 (SlicerParamUpdateEvent, EVT_SLICER_PARS_UPDATE) = wx.lib.newevent.NewEvent() 18 18 #update the slicer from the panel -
src/sas/sasgui/guiframe/local_perspectives/data_loader/data_loader.py
rb963b20 r20fa5fe 90 90 def can_load_data(self): 91 91 """ 92 if return True, then call handler to l aod data92 if return True, then call handler to load data 93 93 """ 94 94 return True -
src/sas/sasgui/guiframe/local_perspectives/plotting/binder.py
r463e7ffc r20fa5fe 359 359 # TODO: Do we need an explicit focus command for keyboard? 360 360 # TODO: Can we tab between items? 361 # TODO: How do unhandled events get prop ogated to axes, figure and361 # TODO: How do unhandled events get propagated to axes, figure and 362 362 # TODO: finally to application? Do we need to implement a full tags 363 363 # TODO: architecture a la Tk? -
src/sas/sasgui/guiframe/local_perspectives/plotting/boxSlicer.py
r7432acb r20fa5fe 216 216 """ 217 217 self.base.thaw_axes() 218 # Post param ters218 # Post parameters 219 219 event = SlicerParameterEvent() 220 220 event.type = self.__class__.__name__ -
src/sas/sasgui/guiframe/local_perspectives/plotting/masking.py
r45dffa69 r20fa5fe 77 77 def compute(self): 78 78 """ 79 ex cuting computation79 executing computation 80 80 """ 81 81 elapsed = time.time() - self.starttime -
src/sas/sasgui/guiframe/plugin_base.py
r7432acb r20fa5fe 82 82 def can_load_data(self): 83 83 """ 84 if return True, then call handler to l aod data84 if return True, then call handler to load data 85 85 """ 86 86 return False -
src/sas/sasgui/guiframe/proxy.py
ra1b8fee r20fa5fe 17 17 connect() function: 18 18 - auto detects proxy in windows, osx 19 - in ux systems, the http_proxy enviro ment variable must be set19 - in ux systems, the http_proxy environment variable must be set 20 20 - if it fails, try to find the proxy.pac address. 21 21 - parses the file, and looks up for all possible proxies
Note: See TracChangeset
for help on using the changeset viewer.