source: sasview/test/test_rename_guiframe/config.py @ 6b33ffc

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 6b33ffc was 6b33ffc, checked in by Gervaise Alina <gervyh@…>, 13 years ago

rename

  • Property mode set to 100644
File size: 2.9 KB
Line 
1"""
2Application settings
3"""
4import os
5import time
6from sans.guiframe.gui_style import GUIFRAME
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
27Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
28project 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"
43_welcome_image = "images/SVwelcome.png"
44_copyright = "(c) 2008, University of Tennessee"
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'
49#PLUGINS_WLIST = ['P(r) files (*.prv)|*.prv',
50#                  'Fitting files (*.fitv)|*.fitv',
51#                  'Invariant files (*.inv)|*.inv']
52#APPLICATION_WLIST = 'SansView files (*.svs)|*.svs'
53APPLICATION_WLIST = ''
54APPLICATION_STATE_EXTENSION = None
55PLUGINS_WLIST = []
56PLUGIN_STATE_EXTENSIONS = []
57SPLASH_SCREEN_PATH = "images/danse_logo.png"     
58DEFAULT_STYLE = GUIFRAME.SINGLE_APPLICATION
59SPLASH_SCREEN_WIDTH = 500
60SPLASH_SCREEN_HEIGHT = 300
61SS_MAX_DISPLAY_TIME = 4000 #4 sec
62PLOPANEL_WIDTH = 350
63PLOPANEL_HEIGTH = 350
64GUIFRAME_WIDTH = 1000
65GUIFRAME_HEIGHT = 800
66SetupIconFile_win = os.path.join("images", "ball.ico")
67SetupIconFile_mac = os.path.join("images", "ball.icns")
68DefaultGroupName = "DANSE"
69OutputBaseFilename = "setupGuiFrame"
70DATAPANEL_WIDTH = 235
71DATAPANEL_HEIGHT = 700
72FIXED_PANEL = True
73DATALOADER_SHOW = True
74CLEANUP_PLOT = False
75WELCOME_PANEL_SHOW = False
76#Show or hide toolbar at the start up
77TOOLBAR_SHOW = True
78# set a default perspective
79DEFAULT_PERSPECTIVE = 'None'
80
81import wx.lib.newevent
82(StatusBarEvent, EVT_STATUS) = wx.lib.newevent.NewEvent()
83
84def printEVT(message):
85    if __EVT_DEBUG__:
86        print "%g%s" % (time.clock(), message)
87       
88        if __EVT_DEBUG_2_FILE__:
89            out = open(__EVT_DEBUG_FILENAME__, 'a')
90            out.write("%10g%s\n" % (time.clock(), message))
91            out.close()
92           
Note: See TracBrowser for help on using the repository browser.