[d89f09b] | 1 | """ |
---|
| 2 | Application settings |
---|
| 3 | """ |
---|
| 4 | import time |
---|
[68c53a4] | 5 | import os |
---|
| 6 | from sans.guiframe.gui_style import GUIFRAME |
---|
[d89f09b] | 7 | # Version of the application |
---|
[2dbb681] | 8 | __appname__ = "SansView" |
---|
[b9b9930] | 9 | __version__ = 'Dev01042011' |
---|
[d89f09b] | 10 | __download_page__ = 'http://danse.chem.utk.edu' |
---|
[2bca186] | 11 | __update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php' |
---|
[d89f09b] | 12 | |
---|
| 13 | |
---|
| 14 | # Debug message flag |
---|
[0686c4d6] | 15 | __EVT_DEBUG__ = False |
---|
[d89f09b] | 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" |
---|
[ae61fa5] | 45 | _welcome_image = "images/SVwelcome.png" |
---|
[f04dc30] | 46 | _copyright = "(c) 2009, University of Tennessee" |
---|
[dd1718e] | 47 | |
---|
| 48 | |
---|
[68c53a4] | 49 | #edit the list of file state your plugin can read |
---|
[dd1718e] | 50 | APPLICATION_WLIST = 'SansView files (*.svs)|*.svs' |
---|
[68c53a4] | 51 | APPLICATION_STATE_EXTENSION = '.svs' |
---|
[dd1718e] | 52 | GUIFRAME_WIDTH = 1000 |
---|
| 53 | GUIFRAME_HEIGHT = 800 |
---|
| 54 | PLUGIN_STATE_EXTENSIONS = ['.prv','.fitv', '.inv'] |
---|
| 55 | PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv', |
---|
[68c53a4] | 56 | 'Fitting files (*.fitv)|*.fitv', |
---|
| 57 | 'Invariant files (*.inv)|*.inv'] |
---|
[dd1718e] | 58 | PLOPANEL_WIDTH = 400 |
---|
| 59 | PLOPANEL_HEIGTH = 400 |
---|
[68c53a4] | 60 | SPLASH_SCREEN_PATH = os.path.join("images","SVwelcome.png") |
---|
| 61 | DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.TOOL_ON |
---|
| 62 | SPLASH_SCREEN_WIDTH = 500 |
---|
| 63 | SPLASH_SCREEN_HEIGHT = 300 |
---|
| 64 | SS_MAX_DISPLAY_TIME = 3000 #3 sec |
---|
[dd1718e] | 65 | |
---|
[d89f09b] | 66 | |
---|
| 67 | def printEVT(message): |
---|
| 68 | if __EVT_DEBUG__: |
---|
| 69 | print "%g: %s" % (time.clock(), message) |
---|
| 70 | |
---|
| 71 | if __EVT_DEBUG_2_FILE__: |
---|
| 72 | out = open(__EVT_DEBUG_FILENAME__, 'a') |
---|
| 73 | out.write("%10g: %s\n" % (time.clock(), message)) |
---|
| 74 | out.close() |
---|
| 75 | |
---|