1 | """ |
---|
2 | Application settings |
---|
3 | """ |
---|
4 | import os |
---|
5 | import time |
---|
6 | from 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 |
---|
27 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
28 | project 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' |
---|
53 | APPLICATION_WLIST = '' |
---|
54 | APPLICATION_STATE_EXTENSION = None |
---|
55 | PLUGINS_WLIST = [] |
---|
56 | PLUGIN_STATE_EXTENSIONS = [] |
---|
57 | SPLASH_SCREEN_PATH = "images/danse_logo.png" |
---|
58 | DEFAULT_STYLE = GUIFRAME.SINGLE_APPLICATION |
---|
59 | SPLASH_SCREEN_WIDTH = 500 |
---|
60 | SPLASH_SCREEN_HEIGHT = 300 |
---|
61 | SS_MAX_DISPLAY_TIME = 4000 #4 sec |
---|
62 | PLOPANEL_WIDTH = 350 |
---|
63 | PLOPANEL_HEIGTH = 350 |
---|
64 | GUIFRAME_WIDTH = 1000 |
---|
65 | GUIFRAME_HEIGHT = 800 |
---|
66 | SetupIconFile_win = os.path.join("images", "ball.ico") |
---|
67 | SetupIconFile_mac = os.path.join("images", "ball.icns") |
---|
68 | DefaultGroupName = "DANSE" |
---|
69 | OutputBaseFilename = "setupGuiFrame" |
---|
70 | DATAPANEL_WIDTH = 235 |
---|
71 | DATAPANEL_HEIGHT = 700 |
---|
72 | FIXED_PANEL = True |
---|
73 | DATALOADER_SHOW = True |
---|
74 | CLEANUP_PLOT = False |
---|
75 | WELCOME_PANEL_SHOW = False |
---|
76 | #Show or hide toolbar at the start up |
---|
77 | TOOLBAR_SHOW = True |
---|
78 | # set a default perspective |
---|
79 | DEFAULT_PERSPECTIVE = 'None' |
---|
80 | |
---|
81 | import wx.lib.newevent |
---|
82 | (StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent() |
---|
83 | |
---|
84 | def printEVT(message): |
---|
85 | if __EVT_DEBUG__: |
---|
86 | print "%g: %s" % (time.clock(), message) |
---|
87 | |
---|
88 | if __EVT_DEBUG_2_FILE__: |
---|
89 | out = open(__EVT_DEBUG_FILENAME__, 'a') |
---|
90 | out.write("%10g: %s\n" % (time.clock(), message)) |
---|
91 | out.close() |
---|
92 | |
---|