source: sasview/sansview/local_config.py @ 3bc6090

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 3bc6090 was dcbd4e2c, checked in by Jae Cho <jhjcho@…>, 13 years ago

a small addition

  • Property mode set to 100644
File size: 3.2 KB
Line 
1"""
2    Application settings
3"""
4import time
5import os
6from sans.guiframe.gui_style import GUIFRAME
7# Version of the application
8__appname__ = "SansView"
9__version__ = '1.9.2dev_AUG'
10__download_page__ = 'http://danse.chem.utk.edu'
11__update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php'
12
13
14# Debug message flag
15__EVT_DEBUG__ = False
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_do_tutorial = True
27_acknowledgement =  \
28'''This software was developed by the University of Tennessee as part of the
29Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
30project funded by the US National Science Foundation.
31
32'''
33_homepage = "http://danse.chem.utk.edu"
34_download = "http://danse.chem.utk.edu/sansview.html"
35_authors = []
36_paper = "http://danse.us/trac/sans/newticket"
37_license = "mailto:sansdanse@gmail.com"
38
39
40icon_path = "images"
41media_path = "media"
42test_path =  "test"
43
44_nsf_logo = os.path.join(icon_path, "nsf_logo.png")
45_danse_logo = os.path.join(icon_path, "danse_logo.png")
46_inst_logo = os.path.join(icon_path, "utlogo.gif")
47_nsf_url = "http://www.nsf.gov"
48_danse_url = "http://www.cacr.caltech.edu/projects/danse/release/index.html"
49_inst_url = "http://www.utk.edu"
50_corner_image = os.path.join(icon_path, "angles_flat.png")
51_welcome_image = os.path.join(icon_path, "SVwelcome.png")
52_copyright = "(c) 2009, University of Tennessee"
53
54
55#edit the list of file state your plugin can read
56APPLICATION_WLIST = 'SansView files (*.svs)|*.svs'
57APPLICATION_STATE_EXTENSION = '.svs'
58GUIFRAME_WIDTH = 1150
59GUIFRAME_HEIGHT = 840
60PLUGIN_STATE_EXTENSIONS = ['.fitv', '.inv', '.prv']
61PLUGINS_WLIST = ['Fitting files (*.fitv)|*.fitv',
62                  'Invariant files (*.inv)|*.inv',
63                  'P(r) files (*.prv)|*.prv']
64PLOPANEL_WIDTH = 415
65PLOPANEL_HEIGTH = 370
66DATAPANEL_WIDTH = 235
67DATAPANEL_HEIGHT = 700
68SPLASH_SCREEN_PATH = os.path.join(icon_path,"SVwelcome_mini.png")
69TUTORIAL_PATH = os.path.join(media_path,"Tutorial.pdf")
70DEFAULT_STYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.MANAGER_ON\
71                    |GUIFRAME.CALCULATOR_ON|GUIFRAME.TOOLBAR_ON
72SPLASH_SCREEN_WIDTH = 512
73SPLASH_SCREEN_HEIGHT = 366
74SS_MAX_DISPLAY_TIME = 6000 #6 sec
75WELCOME_PANEL_ON  = True
76WELCOME_PANEL_SHOW = False
77CLEANUP_PLOT = False
78# OPEN and SAVE project menu
79OPEN_SAVE_PROJECT_MENU = True
80#VIEW MENU
81VIEW_MENU = True
82#EDIT MENU
83EDIT_MENU = True
84
85SetupIconFile_win = os.path.join(icon_path, "ball.ico")
86SetupIconFile_mac = os.path.join(icon_path, "ball.icns")
87DefaultGroupName = "DANSE"
88OutputBaseFilename = "setupSansView"
89
90FIXED_PANEL = True
91DATALOADER_SHOW = True
92CLEANUP_PLOT = False
93WELCOME_PANEL_SHOW = False
94#Show or hide toolbar at the start up
95TOOLBAR_SHOW = True
96# set a default perspective
97DEFAULT_PERSPECTIVE = 'None'
98
99def printEVT(message):
100    if __EVT_DEBUG__:
101        print "%g%s" % (time.clock(), message)
102       
103        if __EVT_DEBUG_2_FILE__:
104            out = open(__EVT_DEBUG_FILENAME__, 'a')
105            out.write("%10g%s\n" % (time.clock(), message))
106            out.close()
107           
Note: See TracBrowser for help on using the repository browser.