source: sasview/guiframe/config.py @ 0a2fdca

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 0a2fdca was 9cd6872, checked in by Gervaise Alina <gervyh@…>, 13 years ago

edit config

  • Property mode set to 100644
File size: 2.6 KB
Line 
1"""
2Application settings
3"""
4import time
5from sans.guiframe.gui_style import GUIFRAME
6# Version of the application
7__appname__ = "DummyView"
8__version__ = '0.1.0'
9__download_page__ = 'http://danse.chem.utk.edu'
10
11
12# Debug message flag
13__EVT_DEBUG__ = True
14
15# Flag for automated testing
16__TEST__ = False
17
18# Debug message should be written to a file?
19__EVT_DEBUG_2_FILE__   = False
20__EVT_DEBUG_FILENAME__ = "debug.log"
21
22# About box info
23_do_aboutbox = True
24_acknowledgement =  \
25'''This software was developed by the University of Tennessee as part of the
26Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
27project funded by the US National Science Foundation.
28
29'''
30_homepage = "http://danse.chem.utk.edu"
31_download = "http://danse.chem.utk.edu/sansview.html"
32_authors = []
33_paper = "http://danse.us/trac/sans/newticket"
34_license = "mailto:sansdanse@gmail.com"
35_nsf_logo = "images/nsf_logo.png"
36_danse_logo = "images/danse_logo.png"
37_inst_logo = "images/utlogo.gif"
38_nsf_url = "http://www.nsf.gov"
39_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
40_inst_url = "http://www.utk.edu"
41_corner_image = "images/angles_flat.png"
42_welcome_image = "images/SVwelcome.png"
43_copyright = "(c) 2008, University of Tennessee"
44#edit the lists below of file state your plugin can read
45#for sansview this how you can edit these lists
46#PLUGIN_STATE_EXTENSIONS = ['.prv','.fitv', '.inv']
47#APPLICATION_STATE_EXTENSION = '.svs'
48#PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv',
49#                  'Fitting files (*.fitv)|*.fitv',
50#                  'Invariant files (*.inv)|*.inv']
51#APPLICATION_WLIST = 'SansView files (*.svs)|*.svs'
52APPLICATION_WLIST = ''
53APPLICATION_STATE_EXTENSION = None
54PLUGINS_WLIST = []
55PLUGIN_STATE_EXTENSIONS = []
56SPLASH_SCREEN_PATH = "images/danse_logo.png"     
57DEFAULT_STYLE = GUIFRAME.SINGLE_APPLICATION
58SPLASH_SCREEN_WIDTH = 500
59SPLASH_SCREEN_HEIGHT = 300
60SS_MAX_DISPLAY_TIME = 3000 #3 sec
61PLOPANEL_WIDTH = 400
62PLOPANEL_HEIGTH = 400
63GUIFRAME_WIDTH = 1000
64GUIFRAME_HEIGHT = 800
65SetupIconFile_win = os.path.join("images", "ball.ico")
66SetupIconFile_mac = os.path.join("images", "ball.icns")
67DefaultGroupName = "DANSE"
68OutputBaseFilename = "setupGuiFrame"
69
70import wx.lib.newevent
71(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
72
73def printEVT(message):
74    if __EVT_DEBUG__:
75        print "%g%s" % (time.clock(), message)
76       
77        if __EVT_DEBUG_2_FILE__:
78            out = open(__EVT_DEBUG_FILENAME__, 'a')
79            out.write("%10g%s\n" % (time.clock(), message))
80            out.close()
81           
Note: See TracBrowser for help on using the repository browser.