source: sasview/sansguiframe/src/sans/guiframe/config.py @ 3c965fd

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 3c965fd was eaa85e7, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

Add missing option from default config.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1"""
2Application settings
3"""
4import os
5import time
6from sans.guiframe.gui_style import GUIFRAME
7# Version of the application
8__appname__ = "DummyView"
9__version__ = '0.1.0'
10__download_page__ = 'http://danse.chem.utk.edu'
11
12
13# Debug message flag
14__EVT_DEBUG__ = True
15
16# Flag for automated testing
17__TEST__ = False
18
19# Debug message should be written to a file?
20__EVT_DEBUG_2_FILE__   = False
21__EVT_DEBUG_FILENAME__ = "debug.log"
22
23# About box info
24_do_aboutbox = True
25_do_tutorial = True
26_acknowledgement =  \
27'''This software was developed by the University of Tennessee as part of the
28Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
29project funded by the US National Science Foundation.
30
31'''
32_homepage = "http://danse.chem.utk.edu"
33_download = "http://danse.chem.utk.edu/sansview.html"
34_authors = []
35_paper = "http://danse.us/trac/sans/newticket"
36_license = "mailto:sansdanse@gmail.com"
37_nsf_logo = "images/nsf_logo.png"
38_danse_logo = "images/danse_logo.png"
39_inst_logo = "images/utlogo.gif"
40_nsf_url = "http://www.nsf.gov"
41_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
42_inst_url = "http://www.utk.edu"
43_corner_image = "images/angles_flat.png"
44_welcome_image = "images/SVwelcome.png"
45_copyright = "(c) 2008, University of Tennessee"
46#edit the lists below of file state your plugin can read
47#for sansview this how you can edit these lists
48#PLUGIN_STATE_EXTENSIONS = ['.prv','.fitv', '.inv']
49#APPLICATION_STATE_EXTENSION = '.svs'
50#PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv',
51#                  'Fitting files (*.fitv)|*.fitv',
52#                  'Invariant files (*.inv)|*.inv']
53#APPLICATION_WLIST = 'SansView files (*.svs)|*.svs'
54APPLICATION_WLIST = ''
55APPLICATION_STATE_EXTENSION = None
56PLUGINS_WLIST = []
57PLUGIN_STATE_EXTENSIONS = []
58SPLASH_SCREEN_PATH = "images/danse_logo.png"     
59DEFAULT_STYLE = GUIFRAME.SINGLE_APPLICATION
60SPLASH_SCREEN_WIDTH = 500
61SPLASH_SCREEN_HEIGHT = 300
62WELCOME_PANEL_ON  = False
63TUTORIAL_PATH = None
64SS_MAX_DISPLAY_TIME = 4000 #4 sec
65PLOPANEL_WIDTH = 350
66PLOPANEL_HEIGTH = 350
67GUIFRAME_WIDTH = 1000
68GUIFRAME_HEIGHT = 800
69SetupIconFile_win = os.path.join("images", "ball.ico")
70SetupIconFile_mac = os.path.join("images", "ball.icns")
71DefaultGroupName = "DANSE"
72OutputBaseFilename = "setupGuiFrame"
73DATAPANEL_WIDTH = 235
74DATAPANEL_HEIGHT = 700
75FIXED_PANEL = True
76DATALOADER_SHOW = True
77CLEANUP_PLOT = False
78WELCOME_PANEL_SHOW = False
79#Show or hide toolbar at the start up
80TOOLBAR_SHOW = True
81# set a default perspective
82DEFAULT_PERSPECTIVE = 'None'
83# OPEN and SAVE project menu
84OPEN_SAVE_PROJECT_MENU = True
85CLEANUP_PLOT = False
86# OPEN and SAVE project menu
87OPEN_SAVE_PROJECT_MENU = False
88#VIEW MENU
89VIEW_MENU = False
90#EDIT MENU
91EDIT_MENU = False
92import wx.lib.newevent
93(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
94
95def printEVT(message):
96    if __EVT_DEBUG__:
97        print "%g%s" % (time.clock(), message)
98       
99        if __EVT_DEBUG_2_FILE__:
100            out = open(__EVT_DEBUG_FILENAME__, 'a')
101            out.write("%10g%s\n" % (time.clock(), message))
102            out.close()
103           
Note: See TracBrowser for help on using the repository browser.