Changeset 70ecd530 in sasview for sansguiframe/src/sans
- Timestamp:
- Oct 24, 2011 2:42:48 PM (13 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:
- bce8148
- Parents:
- 7247844
- Location:
- sansguiframe/src/sans/guiframe
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/config.py
rdcbd4e2c r70ecd530 59 59 SPLASH_SCREEN_WIDTH = 500 60 60 SPLASH_SCREEN_HEIGHT = 300 61 WELCOME_PANEL_ON = False 61 62 TUTORIAL_PATH = None 62 63 SS_MAX_DISPLAY_TIME = 4000 #4 sec … … 81 82 # OPEN and SAVE project menu 82 83 OPEN_SAVE_PROJECT_MENU = True 83 84 CLEANUP_PLOT = False 85 # OPEN and SAVE project menu 86 OPEN_SAVE_PROJECT_MENU = False 87 #VIEW MENU 88 VIEW_MENU = False 89 #EDIT MENU 90 EDIT_MENU = False 84 91 import wx.lib.newevent 85 92 (StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent() -
sansguiframe/src/sans/guiframe/dummyapp.py
r8c347a6 r70ecd530 3 3 Allows the user to set an external data manager 4 4 """ 5 import gui_manager5 import sans.guiframe.gui_manager as gui_manager 6 6 7 7 from sans.guiframe.plugin_base import PluginBase -
sansguiframe/src/sans/guiframe/gui_manager.py
r8a5fecd r70ecd530 85 85 # Didn't find local config, load the default 86 86 import sans.guiframe.config as config 87 88 if config is None: 89 # Didn't find local config, load the default 90 import sans.guiframe.config as config 91 87 92 custom_config = None 88 93 try: -
sansguiframe/src/sans/guiframe/local_perspectives/data_loader/__init__.py
r8c347a6 r70ecd530 1 1 PLUGIN_ID = "DataLoader plug-in 1.0" 2 from data_loader import *2 from sans.guiframe.local_perspectives.data_loader import * -
sansguiframe/src/sans/guiframe/local_perspectives/data_loader/data_loader.py
r805e2e7 r70ecd530 31 31 except: 32 32 # Didn't find local config, load the default 33 import config 34 33 import sans.guiframe.config as config 34 35 if config is None: 36 import sans.guiframe.config as config 37 35 38 36 39 extension_list = [] -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/__init__.py
r8c347a6 r70ecd530 1 1 PLUGIN_ID = "Plotting plug-in 1.0" 2 from plotting import *2 from sans.guiframe.local_perspectives.plotting import *
Note: See TracChangeset
for help on using the changeset viewer.