[41d466f] | 1 | """ |
---|
[d955bf19] | 2 | Application settings |
---|
[41d466f] | 3 | """ |
---|
[8500e2c] | 4 | import os |
---|
[41d466f] | 5 | import time |
---|
[957723f] | 6 | from sans.guiframe.gui_style import GUIFRAME |
---|
[41d466f] | 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" |
---|
[86340d4] | 43 | _welcome_image = "images/SVwelcome.png" |
---|
[41d466f] | 44 | _copyright = "(c) 2008, University of Tennessee" |
---|
[957723f] | 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' |
---|
[4c01978] | 49 | #PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv', |
---|
[957723f] | 50 | # 'Fitting files (*.fitv)|*.fitv', |
---|
| 51 | # 'Invariant files (*.inv)|*.inv'] |
---|
[4c01978] | 52 | #APPLICATION_WLIST = 'SansView files (*.svs)|*.svs' |
---|
| 53 | APPLICATION_WLIST = '' |
---|
[957723f] | 54 | APPLICATION_STATE_EXTENSION = None |
---|
[4c01978] | 55 | PLUGINS_WLIST = [] |
---|
| 56 | PLUGIN_STATE_EXTENSIONS = [] |
---|
[957723f] | 57 | SPLASH_SCREEN_PATH = "images/danse_logo.png" |
---|
| 58 | DEFAULT_STYLE = GUIFRAME.SINGLE_APPLICATION |
---|
| 59 | SPLASH_SCREEN_WIDTH = 500 |
---|
| 60 | SPLASH_SCREEN_HEIGHT = 300 |
---|
[dcbd4e2c] | 61 | TUTORIAL_PATH = None |
---|
[7a955a9] | 62 | SS_MAX_DISPLAY_TIME = 4000 #4 sec |
---|
[ea4dfe0] | 63 | PLOPANEL_WIDTH = 350 |
---|
| 64 | PLOPANEL_HEIGTH = 350 |
---|
[957723f] | 65 | GUIFRAME_WIDTH = 1000 |
---|
| 66 | GUIFRAME_HEIGHT = 800 |
---|
[9cd6872] | 67 | SetupIconFile_win = os.path.join("images", "ball.ico") |
---|
| 68 | SetupIconFile_mac = os.path.join("images", "ball.icns") |
---|
[7bf9a8c] | 69 | DefaultGroupName = "DANSE" |
---|
| 70 | OutputBaseFilename = "setupGuiFrame" |
---|
[ead432b] | 71 | DATAPANEL_WIDTH = 235 |
---|
| 72 | DATAPANEL_HEIGHT = 700 |
---|
| 73 | FIXED_PANEL = True |
---|
| 74 | DATALOADER_SHOW = True |
---|
| 75 | CLEANUP_PLOT = False |
---|
| 76 | WELCOME_PANEL_SHOW = False |
---|
| 77 | #Show or hide toolbar at the start up |
---|
| 78 | TOOLBAR_SHOW = True |
---|
| 79 | # set a default perspective |
---|
| 80 | DEFAULT_PERSPECTIVE = 'None' |
---|
[dcbd4e2c] | 81 | # OPEN and SAVE project menu |
---|
| 82 | OPEN_SAVE_PROJECT_MENU = True |
---|
[41d466f] | 83 | |
---|
| 84 | import wx.lib.newevent |
---|
| 85 | (StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent() |
---|
| 86 | |
---|
| 87 | def printEVT(message): |
---|
| 88 | if __EVT_DEBUG__: |
---|
| 89 | print "%g: %s" % (time.clock(), message) |
---|
| 90 | |
---|
| 91 | if __EVT_DEBUG_2_FILE__: |
---|
| 92 | out = open(__EVT_DEBUG_FILENAME__, 'a') |
---|
| 93 | out.write("%10g: %s\n" % (time.clock(), message)) |
---|
| 94 | out.close() |
---|
| 95 | |
---|