source: sasview/prview/local_config.py @ 84e5533

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 84e5533 was fcc5680, checked in by Gervaise Alina <gervyh@…>, 14 years ago

edit prview local config

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[4a5de6f]1"""
[7116b6e0]2Application settings
[4a5de6f]3"""
4import time
[3e943e8]5from sans.guiframe.gui_style import GUIFRAME
[4a5de6f]6
7# Version of the application
8__appname__ = "PrView"
[009f827]9__version__ = '0.3.0'
[4a5de6f]10__download_page__ = 'http://danse.chem.utk.edu'
[0bae207]11__update_URL__ = 'http://danse.chem.utk.edu/prview_version.php'
[4a5de6f]12
13
14# Debug message flag
[357b79b]15__EVT_DEBUG__ = False
[4a5de6f]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
28Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
29project funded by the US National Science Foundation.
30
[f1181977]31If you use DANSE applications to do scientific research that leads to publication,
32we ask that you acknowledge the use of the software with the following sentence:
33
34"This work benefited from DANSE software developed under NSF award DMR-0520547."
[4a5de6f]35'''
36_homepage = "http://danse.chem.utk.edu"
[9362f85]37_download = "http://danse.chem.utk.edu/prview.html"
[4a5de6f]38_authors = []
39_paper = "http://danse.us/trac/sans/newticket"
40_license = "mailto:sansdanse@gmail.com"
41
42_nsf_logo = "images/nsf_logo.png"
43_danse_logo = "images/danse_logo.png"
44_inst_logo = "images/utlogo.gif"
45_nsf_url = "http://www.nsf.gov"
46_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
47_inst_url = "http://www.utk.edu"
[357b79b]48_corner_image = "images/prview.jpg"
[4a5de6f]49_copyright = "(c) 2008, University of Tennessee"
[3e943e8]50#edit the list of file state your plugin can read
[fcc5680]51
[3e943e8]52APPLICATION_STATE_EXTENSION = '.prv'
[fcc5680]53APPLICATION_WLIST = 'P(r) files (*.prv)|*.prv'
[3e943e8]54DEFAULT_STYLE = GUIFRAME.DEFAULT_STYLE
[fcc5680]55GUIFRAME_WIDTH = 850
56GUIFRAME_HEIGHT = 780
57PLUGIN_STATE_EXTENSIONS = ['.prv']
58PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv']
59PLOPANEL_WIDTH = 400
60PLOPANEL_HEIGTH = 400
61SPLASH_SCREEN_PATH = "images/danse_logo.png"
[3e943e8]62SPLASH_SCREEN_WIDTH = 500
63SPLASH_SCREEN_HEIGHT = 300
64SS_MAX_DISPLAY_TIME = 3000 #3 sec
[fcc5680]65
[4a5de6f]66
67import wx.lib.newevent
68(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
69
70def printEVT(message):
71    if __EVT_DEBUG__:
72        print "%g%s" % (time.clock(), message)
73       
74        if __EVT_DEBUG_2_FILE__:
75            out = open(__EVT_DEBUG_FILENAME__, 'a')
76            out.write("%10g%s\n" % (time.clock(), message))
77            out.close()
78           
Note: See TracBrowser for help on using the repository browser.