source: sasview/sansview/sansview.py @ 8240eab

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 8240eab was 193416e, checked in by Gervaise Alina <gervyh@…>, 14 years ago

move code for sansview size to guiframe

  • Property mode set to 100644
File size: 3.7 KB
Line 
1
2################################################################################
3#This software was developed by the University of Tennessee as part of the
4#Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
5#project funded by the US National Science Foundation.
6#
7#See the license text in license.txt
8#
9#copyright 2009, University of Tennessee
10################################################################################
11
12import wx
13import os
14import sys
15# The below will make sure that sansview application uses the matplotlib font
16# bundled with sansview.
17if hasattr(sys, 'frozen'):
18    mplconfigdir = os.path.join(sys.prefix, '.matplotlib')
19    if not os.path.exists(mplconfigdir):
20        os.mkdir(mplconfigdir)
21    os.environ['MPLCONFIGDIR'] = mplconfigdir
22
23from sans.guiframe import gui_manager
24from sans.guiframe.gui_style import GUIFRAME
25from welcome_panel import WelcomePanel
26# For py2exe, import config here
27import local_config
28import logging
29
30# Application dimensions
31APP_HEIGHT = 800
32APP_WIDTH  = 1000
33GSTYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.TOOL_ON
34
35class SansViewApp(gui_manager.ViewApp):
36    """
37    """
38    SIZE = (APP_WIDTH, APP_HEIGHT)
39    TITLE = local_config.__appname__
40    PROG_SPLASH_PATH = os.path.join("images","SVwelcome.png")
41    STYLE = GSTYLE
42
43class SansView():
44    """
45    """
46    def __init__(self):
47        """
48        """
49        #from gui_manager import ViewApp
50        self.gui = SansViewApp(0) 
51        # Set the application manager for the GUI
52        self.gui.set_manager(self)
53        # Add perspectives to the basic application
54        # Additional perspectives can still be loaded
55        # dynamically
56        # Note: py2exe can't find dynamically loaded
57        # modules. We load the fitting module here
58        # to ensure a complete Windows executable build.
59       
60        # P(r) perspective
61        try:
62            import sans.perspectives.pr as module   
63            pr_plug = module.Plugin(standalone=False)
64            self.gui.add_perspective(pr_plug)
65        except:
66            logging.error("SansView: could not find P(r) plug-in module") 
67            logging.error(sys.exc_value) 
68       
69        #Invariant perspective
70        try:
71            import sans.perspectives.invariant as module   
72            invariant_plug = module.Plugin(standalone=False)
73            self.gui.add_perspective(invariant_plug)
74        except:
75            logging.error("SansView: could not find Invariant plug-in module") 
76            logging.error(sys.exc_value) 
77       
78        #Calculator perspective   
79        try:
80            import sans.perspectives.calculator as module   
81            calculator_plug = module.Plugin(standalone=False)
82            self.gui.add_perspective(calculator_plug)
83        except:
84            logging.error("SansView: could not find Calculator plug-in module")
85            logging.error(sys.exc_value) 
86           
87        # theory perspective
88        try:
89            import sans.perspectives.theory as module   
90            theory_plug = module.Plugin(standalone=False)
91            self.gui.add_perspective(theory_plug)
92        except:
93            logging.error("SansView: could not find theory plug-in module")
94            logging.error(sys.exc_value) 
95           
96        # Fitting perspective
97        import perspectives.fitting as module   
98        fitting_plug = module.Plugin()
99        self.gui.add_perspective(fitting_plug)
100       
101        # Add welcome page
102        self.gui.set_welcome_panel(WelcomePanel)
103     
104        # Build the GUI
105        self.gui.build_gui()
106       
107        # Start the main loop
108        self.gui.MainLoop() 
109       
110
111if __name__ == "__main__": 
112    sansview = SansView()
Note: See TracBrowser for help on using the repository browser.