1 | """ |
---|
2 | Application settings |
---|
3 | """ |
---|
4 | import time |
---|
5 | import os |
---|
6 | import logging |
---|
7 | |
---|
8 | from sas.sasgui.guiframe.gui_style import GUIFRAME |
---|
9 | import sas.sasview |
---|
10 | |
---|
11 | # Version of the application |
---|
12 | __appname__ = "SasView" |
---|
13 | __version__ = sas.sasview.__version__ |
---|
14 | __build__ = sas.sasview.__build__ |
---|
15 | __download_page__ = 'https://github.com/SasView/sasview/releases' |
---|
16 | __update_URL__ = 'http://www.sasview.org/latestversion.json' |
---|
17 | |
---|
18 | # Debug message flag |
---|
19 | __EVT_DEBUG__ = False |
---|
20 | |
---|
21 | # Flag for automated testing |
---|
22 | __TEST__ = False |
---|
23 | |
---|
24 | # Debug message should be written to a file? |
---|
25 | __EVT_DEBUG_2_FILE__ = False |
---|
26 | __EVT_DEBUG_FILENAME__ = "debug.log" |
---|
27 | |
---|
28 | # About box info |
---|
29 | _do_aboutbox = True |
---|
30 | _do_acknowledge = True |
---|
31 | _do_tutorial = True |
---|
32 | _acknowledgement_preamble =\ |
---|
33 | '''To ensure the long term support and development of this software please''' +\ |
---|
34 | ''' remember to do the following.''' |
---|
35 | _acknowledgement_preamble_bullet1 =\ |
---|
36 | '''Acknowledge its use in your publications as suggested below''' |
---|
37 | _acknowledgement_preamble_bullet2 =\ |
---|
38 | '''Reference the following website: http://www.sasview.org''' |
---|
39 | _acknowledgement_preamble_bullet3 =\ |
---|
40 | '''Reference the model you used if appropriate (see documentation for refs)''' |
---|
41 | _acknowledgement_preamble_bullet4 =\ |
---|
42 | '''Send us your reference for our records: developers@sasview.org''' |
---|
43 | _acknowledgement_publications = \ |
---|
44 | '''This work benefited from the use of the SasView application, originally |
---|
45 | developed under NSF award DMR-0520547. |
---|
46 | ''' |
---|
47 | _acknowledgement = \ |
---|
48 | '''This work originally developed as part of the DANSE project funded by the NSF |
---|
49 | under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS |
---|
50 | and ILL. |
---|
51 | |
---|
52 | ''' |
---|
53 | _homepage = "http://www.sasview.org" |
---|
54 | _download = __download_page__ |
---|
55 | _authors = [] |
---|
56 | _paper = "http://sourceforge.net/p/sasview/tickets/" |
---|
57 | _license = "mailto:help@sasview.org" |
---|
58 | |
---|
59 | |
---|
60 | icon_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "images")) |
---|
61 | logging.info("icon path: %s", icon_path) |
---|
62 | media_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "media")) |
---|
63 | test_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "test")) |
---|
64 | |
---|
65 | _nist_logo = os.path.join(icon_path, "nist_logo.png") |
---|
66 | _umd_logo = os.path.join(icon_path, "umd_logo.png") |
---|
67 | _sns_logo = os.path.join(icon_path, "sns_logo.png") |
---|
68 | _isis_logo = os.path.join(icon_path, "isis_logo.png") |
---|
69 | _ess_logo = os.path.join(icon_path, "ess_logo.png") |
---|
70 | _ill_logo = os.path.join(icon_path, "ill_logo.png") |
---|
71 | _nsf_logo = os.path.join(icon_path, "nsf_logo.png") |
---|
72 | _danse_logo = os.path.join(icon_path, "danse_logo.png") |
---|
73 | _inst_logo = os.path.join(icon_path, "utlogo.gif") |
---|
74 | _nist_url = "http://www.nist.gov/" |
---|
75 | _umd_url = "http://www.umd.edu/" |
---|
76 | _sns_url = "http://neutrons.ornl.gov/" |
---|
77 | _nsf_url = "http://www.nsf.gov" |
---|
78 | _isis_url = "http://www.isis.stfc.ac.uk/" |
---|
79 | _ess_url = "http://ess-scandinavia.eu/" |
---|
80 | _ill_url = "http://www.ill.eu/" |
---|
81 | _danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" |
---|
82 | _inst_url = "http://www.utk.edu" |
---|
83 | _corner_image = os.path.join(icon_path, "angles_flat.png") |
---|
84 | _welcome_image = os.path.join(icon_path, "SVwelcome.png") |
---|
85 | _copyright = "(c) 2009 - 2013, UTK, UMD, NIST, ORNL, ISIS, ESS and ILL" |
---|
86 | |
---|
87 | |
---|
88 | #edit the list of file state your plugin can read |
---|
89 | APPLICATION_WLIST = 'SasView files (*.svs)|*.svs' |
---|
90 | APPLICATION_STATE_EXTENSION = '.svs' |
---|
91 | GUIFRAME_WIDTH = 1150 |
---|
92 | GUIFRAME_HEIGHT = 840 |
---|
93 | PLUGIN_STATE_EXTENSIONS = ['.fitv', '.inv', '.prv'] |
---|
94 | PLUGINS_WLIST = ['Fitting files (*.fitv)|*.fitv', |
---|
95 | 'Invariant files (*.inv)|*.inv', |
---|
96 | 'P(r) files (*.prv)|*.prv'] |
---|
97 | PLOPANEL_WIDTH = 415 |
---|
98 | PLOPANEL_HEIGTH = 370 |
---|
99 | DATAPANEL_WIDTH = 235 |
---|
100 | DATAPANEL_HEIGHT = 700 |
---|
101 | SPLASH_SCREEN_PATH = os.path.join(icon_path, "SVwelcome_mini.png") |
---|
102 | TUTORIAL_PATH = os.path.join(media_path, "Tutorial.pdf") |
---|
103 | DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.MANAGER_ON\ |
---|
104 | |GUIFRAME.CALCULATOR_ON|GUIFRAME.TOOLBAR_ON |
---|
105 | SPLASH_SCREEN_WIDTH = 512 |
---|
106 | SPLASH_SCREEN_HEIGHT = 366 |
---|
107 | SS_MAX_DISPLAY_TIME = 2000 |
---|
108 | WELCOME_PANEL_ON = True |
---|
109 | WELCOME_PANEL_SHOW = False |
---|
110 | CLEANUP_PLOT = False |
---|
111 | # OPEN and SAVE project menu |
---|
112 | OPEN_SAVE_PROJECT_MENU = True |
---|
113 | #VIEW MENU |
---|
114 | VIEW_MENU = True |
---|
115 | #EDIT MENU |
---|
116 | EDIT_MENU = True |
---|
117 | |
---|
118 | SetupIconFile_win = os.path.join(icon_path, "ball.ico") |
---|
119 | SetupIconFile_mac = os.path.join(icon_path, "ball.icns") |
---|
120 | DefaultGroupName = "." |
---|
121 | OutputBaseFilename = "setupSasView" |
---|
122 | |
---|
123 | FIXED_PANEL = True |
---|
124 | DATALOADER_SHOW = True |
---|
125 | CLEANUP_PLOT = False |
---|
126 | WELCOME_PANEL_SHOW = False |
---|
127 | #Show or hide toolbar at the start up |
---|
128 | TOOLBAR_SHOW = True |
---|
129 | # set a default perspective |
---|
130 | DEFAULT_PERSPECTIVE = 'None' |
---|
131 | |
---|
132 | # Time out for updating sasview |
---|
133 | UPDATE_TIMEOUT = 2 |
---|
134 | |
---|
135 | def printEVT(message): |
---|
136 | """ |
---|
137 | Post a debug message to console/file |
---|
138 | """ |
---|
139 | if __EVT_DEBUG__: |
---|
140 | print "%g: %s" % (time.clock(), message) |
---|
141 | |
---|
142 | if __EVT_DEBUG_2_FILE__: |
---|
143 | out = open(__EVT_DEBUG_FILENAME__, 'a') |
---|
144 | out.write("%10g: %s\n" % (time.clock(), message)) |
---|
145 | out.close() |
---|