[f721030] | 1 | """ |
---|
| 2 | Application settings |
---|
| 3 | """ |
---|
| 4 | import time |
---|
| 5 | import os |
---|
[e540cd2] | 6 | import logging |
---|
| 7 | |
---|
[f721030] | 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")) |
---|
[e540cd2] | 61 | logging.info("icon path: %s", icon_path) |
---|
[f721030] | 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") |
---|
[e207c3f] | 71 | _ansto_logo = os.path.join(icon_path, "ansto_logo.png") |
---|
[f721030] | 72 | _nsf_logo = os.path.join(icon_path, "nsf_logo.png") |
---|
| 73 | _danse_logo = os.path.join(icon_path, "danse_logo.png") |
---|
| 74 | _inst_logo = os.path.join(icon_path, "utlogo.gif") |
---|
| 75 | _nist_url = "http://www.nist.gov/" |
---|
| 76 | _umd_url = "http://www.umd.edu/" |
---|
| 77 | _sns_url = "http://neutrons.ornl.gov/" |
---|
| 78 | _nsf_url = "http://www.nsf.gov" |
---|
| 79 | _isis_url = "http://www.isis.stfc.ac.uk/" |
---|
| 80 | _ess_url = "http://ess-scandinavia.eu/" |
---|
| 81 | _ill_url = "http://www.ill.eu/" |
---|
[e207c3f] | 82 | _ansto_url = "http://www.ansto.gov.au/" |
---|
[f721030] | 83 | _danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html" |
---|
| 84 | _inst_url = "http://www.utk.edu" |
---|
| 85 | _corner_image = os.path.join(icon_path, "angles_flat.png") |
---|
| 86 | _welcome_image = os.path.join(icon_path, "SVwelcome.png") |
---|
[b27c681] | 87 | _copyright = "(c) 2009 - 2013, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL and ANSTO" |
---|
[f721030] | 88 | |
---|
| 89 | |
---|
| 90 | #edit the list of file state your plugin can read |
---|
| 91 | APPLICATION_WLIST = 'SasView files (*.svs)|*.svs' |
---|
| 92 | APPLICATION_STATE_EXTENSION = '.svs' |
---|
| 93 | GUIFRAME_WIDTH = 1150 |
---|
| 94 | GUIFRAME_HEIGHT = 840 |
---|
| 95 | PLUGIN_STATE_EXTENSIONS = ['.fitv', '.inv', '.prv'] |
---|
| 96 | PLUGINS_WLIST = ['Fitting files (*.fitv)|*.fitv', |
---|
| 97 | 'Invariant files (*.inv)|*.inv', |
---|
| 98 | 'P(r) files (*.prv)|*.prv'] |
---|
| 99 | PLOPANEL_WIDTH = 415 |
---|
| 100 | PLOPANEL_HEIGTH = 370 |
---|
| 101 | DATAPANEL_WIDTH = 235 |
---|
| 102 | DATAPANEL_HEIGHT = 700 |
---|
| 103 | SPLASH_SCREEN_PATH = os.path.join(icon_path, "SVwelcome_mini.png") |
---|
| 104 | TUTORIAL_PATH = os.path.join(media_path, "Tutorial.pdf") |
---|
| 105 | DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.MANAGER_ON\ |
---|
| 106 | |GUIFRAME.CALCULATOR_ON|GUIFRAME.TOOLBAR_ON |
---|
| 107 | SPLASH_SCREEN_WIDTH = 512 |
---|
| 108 | SPLASH_SCREEN_HEIGHT = 366 |
---|
| 109 | SS_MAX_DISPLAY_TIME = 2000 |
---|
| 110 | WELCOME_PANEL_ON = True |
---|
| 111 | WELCOME_PANEL_SHOW = False |
---|
| 112 | CLEANUP_PLOT = False |
---|
| 113 | # OPEN and SAVE project menu |
---|
| 114 | OPEN_SAVE_PROJECT_MENU = True |
---|
| 115 | #VIEW MENU |
---|
| 116 | VIEW_MENU = True |
---|
| 117 | #EDIT MENU |
---|
| 118 | EDIT_MENU = True |
---|
| 119 | |
---|
| 120 | SetupIconFile_win = os.path.join(icon_path, "ball.ico") |
---|
| 121 | SetupIconFile_mac = os.path.join(icon_path, "ball.icns") |
---|
| 122 | DefaultGroupName = "." |
---|
| 123 | OutputBaseFilename = "setupSasView" |
---|
| 124 | |
---|
| 125 | FIXED_PANEL = True |
---|
| 126 | DATALOADER_SHOW = True |
---|
| 127 | CLEANUP_PLOT = False |
---|
| 128 | WELCOME_PANEL_SHOW = False |
---|
| 129 | #Show or hide toolbar at the start up |
---|
| 130 | TOOLBAR_SHOW = True |
---|
| 131 | # set a default perspective |
---|
| 132 | DEFAULT_PERSPECTIVE = 'None' |
---|
| 133 | |
---|
| 134 | # Time out for updating sasview |
---|
| 135 | UPDATE_TIMEOUT = 2 |
---|
| 136 | |
---|
| 137 | def printEVT(message): |
---|
[e540cd2] | 138 | """ |
---|
| 139 | Post a debug message to console/file |
---|
| 140 | """ |
---|
[f721030] | 141 | if __EVT_DEBUG__: |
---|
| 142 | print "%g: %s" % (time.clock(), message) |
---|
| 143 | |
---|
| 144 | if __EVT_DEBUG_2_FILE__: |
---|
| 145 | out = open(__EVT_DEBUG_FILENAME__, 'a') |
---|
| 146 | out.write("%10g: %s\n" % (time.clock(), message)) |
---|
| 147 | out.close() |
---|