Changeset 8e3dc19 in sasview
- Timestamp:
- Aug 12, 2011 2:33:09 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:
- b52cf23
- Parents:
- 889de4d9
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/scripts/local_config.py
r8ddaa9b r8e3dc19 65 65 SPLASH_SCREEN_HEIGHT = 366 66 66 SS_MAX_DISPLAY_TIME = 6000 #6 sec 67 WELCOME_PANEL_ SHOW= False67 WELCOME_PANEL_ON = False 68 68 CLEANUP_PLOT = False 69 69 SetupIconFile_win = os.path.join("images", "ball.ico") -
prview/local_config.py
r807560b r8e3dc19 8 8 # Version of the application 9 9 __appname__ = "PrView" 10 __version__ = '0. 3.0'10 __version__ = '0.9.1' 11 11 __download_page__ = 'http://danse.chem.utk.edu' 12 12 __update_URL__ = 'http://danse.chem.utk.edu/prview_version.php' … … 75 75 DATALOADER_SHOW = True 76 76 CLEANUP_PLOT = False 77 WELCOME_PANEL_ SHOW= False77 WELCOME_PANEL_ON = False 78 78 #Show or hide toolbar at the start up 79 79 TOOLBAR_SHOW = True 80 80 #Open Save project menu 81 OPEN_SAVE_PROJECT_MENU = True81 OPEN_SAVE_PROJECT_MENU = False 82 82 #VIEW MENU 83 83 VIEW_MENU = True -
sansguiframe/src/sans/guiframe/gui_manager.py
r390742c r8e3dc19 89 89 APPLICATION_NAME = config.__appname__ 90 90 SPLASH_SCREEN_PATH = config.SPLASH_SCREEN_PATH 91 91 WELCOME_PANEL_ON = config.WELCOME_PANEL_ON 92 92 SPLASH_SCREEN_WIDTH = config.SPLASH_SCREEN_WIDTH 93 93 SPLASH_SCREEN_HEIGHT = config.SPLASH_SCREEN_HEIGHT 94 94 SS_MAX_DISPLAY_TIME = config.SS_MAX_DISPLAY_TIME 95 95 if not WELCOME_PANEL_ON: 96 WELCOME_PANEL_SHOW = False 97 else: 98 WELCOME_PANEL_SHOW = True 96 99 try: 97 100 DATALOADER_SHOW = custom_config.DATALOADER_SHOW 98 101 TOOLBAR_SHOW = custom_config.TOOLBAR_SHOW 99 102 FIXED_PANEL = custom_config.FIXED_PANEL 100 WELCOME_PANEL_SHOW = custom_config.WELCOME_PANEL_SHOW 103 if WELCOME_PANEL_ON: 104 WELCOME_PANEL_SHOW = custom_config.WELCOME_PANEL_SHOW 101 105 PLOPANEL_WIDTH = custom_config.PLOPANEL_WIDTH 102 106 DATAPANEL_WIDTH = custom_config.DATAPANEL_WIDTH … … 953 957 if style == GUIFRAME.WELCOME_PANEL_ON or custom_config != None: 954 958 # add the welcome panel menu item 955 if self.defaultPanel is not None:959 if config.WELCOME_PANEL_ON and self.defaultPanel is not None: 956 960 id = wx.NewId() 957 961 self._help_menu.Append(id, '&Welcome', '') -
sansview/local_config.py
rd4c19e5 r8e3dc19 73 73 SPLASH_SCREEN_HEIGHT = 366 74 74 SS_MAX_DISPLAY_TIME = 6000 #6 sec 75 WELCOME_PANEL_ON = True 75 76 WELCOME_PANEL_SHOW = False 76 77 CLEANUP_PLOT = False
Note: See TracChangeset
for help on using the changeset viewer.