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

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 3e001f9 was 657e52c, checked in by Jae Cho <jhjcho@…>, 12 years ago

merging from the release 2.2.0

  • Property mode set to 100644
File size: 3.7 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.0.0'
10__build__ = '1'
11__download_page__ = 'http://sourceforge.net/projects/sasview/files/'
12__update_URL__ = ['svn.code.sf.net', 
13                  '/p/sasview/code/trunk/sansview.latestversion']
14
15
16# Debug message flag
17__EVT_DEBUG__ = True
18
19# Flag for automated testing
20__TEST__ = False
21
22# Debug message should be written to a file?
23__EVT_DEBUG_2_FILE__   = False
24__EVT_DEBUG_FILENAME__ = "debug.log"
25
26# About box info
27_do_aboutbox = True
28_do_tutorial = True
29_acknowledgement =  \
30'''This software was developed by the University of Tennessee as part of the
31Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
32project funded by the US National Science Foundation.
33
34'''
35_homepage = "http://www.sasview.org"
36_download = "http://sourceforge.net/projects/sasview/files/"
37_authors = []
38_paper = "http://sourceforge.net/p/sasview/tickets/"
39_license = "mailto:help@sasview.org"
40_nsf_logo = "images/nsf_logo.png"
41_danse_logo = "images/danse_logo.png"
42_inst_logo = "images/utlogo.gif"
43_nist_logo = "images/nist_logo.png"
44_umd_logo = "images/umd_logo.png"
45_sns_logo = "images/sns_logo.png"
46_isis_logo = "images/isis_logo.png"
47_ess_logo = "images/ess_logo.png"
48_ill_logo = "images/ill_logo.png"
49_nist_url = "http://www.nist.gov/"
50_umd_url = "http://www.umd.edu/"
51_sns_url = "http://neutrons.ornl.gov/"
52_nsf_url = "http://www.nsf.gov"
53_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
54_inst_url = "http://www.utk.edu"
55_isis_url = "http://www.isis.stfc.ac.uk/"
56_ess_url = "http://ess-scandinavia.eu/"
57_ill_url = "http://www.ill.eu/"
58_corner_image = "images/angles_flat.png"
59_welcome_image = "images/SVwelcome.png"
60_copyright = "(c) 2008, University of Tennessee"
61#edit the lists below of file state your plugin can read
62#for sansview this how you can edit these lists
63#PLUGIN_STATE_EXTENSIONS = ['.prv','.fitv', '.inv']
64#APPLICATION_STATE_EXTENSION = '.svs'
65#PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv',
66#                  'Fitting files (*.fitv)|*.fitv',
67#                  'Invariant files (*.inv)|*.inv']
68#APPLICATION_WLIST = 'SansView files (*.svs)|*.svs'
69APPLICATION_WLIST = ''
70APPLICATION_STATE_EXTENSION = None
71PLUGINS_WLIST = []
72PLUGIN_STATE_EXTENSIONS = []
73SPLASH_SCREEN_PATH = "images/danse_logo.png"     
74DEFAULT_STYLE = GUIFRAME.SINGLE_APPLICATION
75SPLASH_SCREEN_WIDTH = 500
76SPLASH_SCREEN_HEIGHT = 300
77WELCOME_PANEL_ON  = False
78TUTORIAL_PATH = None
79SS_MAX_DISPLAY_TIME = 4000 #4 sec
80PLOPANEL_WIDTH = 350
81PLOPANEL_HEIGTH = 350
82GUIFRAME_WIDTH = 1000
83GUIFRAME_HEIGHT = 800
84SetupIconFile_win = os.path.join("images", "ball.ico")
85SetupIconFile_mac = os.path.join("images", "ball.icns")
86DefaultGroupName = "DANSE"
87OutputBaseFilename = "setupGuiFrame"
88DATAPANEL_WIDTH = 235
89DATAPANEL_HEIGHT = 700
90FIXED_PANEL = True
91DATALOADER_SHOW = True
92CLEANUP_PLOT = False
93WELCOME_PANEL_SHOW = False
94#Show or hide toolbar at the start up
95TOOLBAR_SHOW = True
96# set a default perspective
97DEFAULT_PERSPECTIVE = 'None'
98# OPEN and SAVE project menu
99OPEN_SAVE_PROJECT_MENU = True
100CLEANUP_PLOT = False
101# OPEN and SAVE project menu
102OPEN_SAVE_PROJECT_MENU = False
103#VIEW MENU
104VIEW_MENU = False
105#EDIT MENU
106EDIT_MENU = False
107import wx.lib.newevent
108(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
109
110def printEVT(message):
111    if __EVT_DEBUG__:
112        print "%g%s" % (time.clock(), message)
113       
114        if __EVT_DEBUG_2_FILE__:
115            out = open(__EVT_DEBUG_FILENAME__, 'a')
116            out.write("%10g%s\n" % (time.clock(), message))
117            out.close()
118           
Note: See TracBrowser for help on using the repository browser.