source: sasview/sansguiframe/src/sans/guiframe/config.py @ 70ecd530

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 70ecd530 was 70ecd530, checked in by Gervaise Alina <gervyh@…>, 13 years ago

minor cchange to allow sphinx build

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