1 | """ |
---|
2 | Application settings |
---|
3 | """ |
---|
4 | import time |
---|
5 | import os |
---|
6 | from sans.guiframe.gui_style import GUIFRAME |
---|
7 | # Version of the application |
---|
8 | __appname__ = "SansView" |
---|
9 | __version__ = '1.9_release_candidate' |
---|
10 | __download_page__ = 'http://danse.chem.utk.edu' |
---|
11 | __update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php' |
---|
12 | |
---|
13 | |
---|
14 | # Debug message flag |
---|
15 | __EVT_DEBUG__ = False |
---|
16 | |
---|
17 | # Flag for automated testing |
---|
18 | __TEST__ = False |
---|
19 | |
---|
20 | # Debug message should be written to a file? |
---|
21 | __EVT_DEBUG_2_FILE__ = False |
---|
22 | __EVT_DEBUG_FILENAME__ = "debug.log" |
---|
23 | |
---|
24 | # About box info |
---|
25 | _do_aboutbox=True |
---|
26 | _acknowledgement = \ |
---|
27 | '''This software was developed by the University of Tennessee as part of the |
---|
28 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
29 | project 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 | |
---|
38 | _nsf_logo = "images/nsf_logo.png" |
---|
39 | _danse_logo = "images/danse_logo.png" |
---|
40 | _inst_logo = "images/utlogo.gif" |
---|
41 | _nsf_url = "http://www.nsf.gov" |
---|
42 | _danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" |
---|
43 | _inst_url = "http://www.utk.edu" |
---|
44 | _corner_image = "images/angles_flat.png" |
---|
45 | _welcome_image = "images/SVwelcome.png" |
---|
46 | _copyright = "(c) 2009, University of Tennessee" |
---|
47 | |
---|
48 | |
---|
49 | #edit the list of file state your plugin can read |
---|
50 | APPLICATION_WLIST = 'SansView files (*.svs)|*.svs' |
---|
51 | APPLICATION_STATE_EXTENSION = '.svs' |
---|
52 | GUIFRAME_WIDTH = 1100 |
---|
53 | GUIFRAME_HEIGHT = 840 |
---|
54 | PLUGIN_STATE_EXTENSIONS = ['.fitv', '.inv', '.prv'] |
---|
55 | PLUGINS_WLIST = ['Fitting files (*.fitv)|*.fitv', |
---|
56 | 'Invariant files (*.inv)|*.inv', |
---|
57 | 'P(r) files (*.prv)|*.prv'] |
---|
58 | PLOPANEL_WIDTH = 450 |
---|
59 | PLOPANEL_HEIGTH = 400 |
---|
60 | SPLASH_SCREEN_PATH = os.path.join("images","SVwelcome_mini.png") |
---|
61 | DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.MANAGER_ON\ |
---|
62 | |GUIFRAME.CALCULATOR_ON|GUIFRAME.TOOLBAR_ON |
---|
63 | SPLASH_SCREEN_WIDTH = 512 |
---|
64 | SPLASH_SCREEN_HEIGHT = 366 |
---|
65 | SS_MAX_DISPLAY_TIME = 3000 #3 sec |
---|
66 | SetupIconFile_win = os.path.join("images", "ball.ico") |
---|
67 | SetupIconFile_mac = os.path.join("images", "ball.icns") |
---|
68 | DefaultGroupName = "DANSE" |
---|
69 | OutputBaseFilename = "setupSansView" |
---|
70 | |
---|
71 | |
---|
72 | def printEVT(message): |
---|
73 | if __EVT_DEBUG__: |
---|
74 | print "%g: %s" % (time.clock(), message) |
---|
75 | |
---|
76 | if __EVT_DEBUG_2_FILE__: |
---|
77 | out = open(__EVT_DEBUG_FILENAME__, 'a') |
---|
78 | out.write("%10g: %s\n" % (time.clock(), message)) |
---|
79 | out.close() |
---|
80 | |
---|