source: sasview/sansview/sansview.py @ 5376e03

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 5376e03 was 5376e03, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

Re #3 modify local_config to find resources regardless of where sansview runs

  • Property mode set to 100644
File size: 3.6 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(os.path.expanduser("~"), '.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
30def run():
31    from multiprocessing import freeze_support
32    freeze_support()
33    sansview = SansView()
34       
35class SansViewApp(gui_manager.ViewApp):
36    """
37    """
38 
39
40class SansView():
41    """
42    """
43    def __init__(self):
44        """
45        """
46        #from gui_manager import ViewApp
47        self.gui = SansViewApp(0) 
48        # Set the application manager for the GUI
49        self.gui.set_manager(self)
50        # Add perspectives to the basic application
51        # Additional perspectives can still be loaded
52        # dynamically
53        # Note: py2exe can't find dynamically loaded
54        # modules. We load the fitting module here
55        # to ensure a complete Windows executable build.
56       
57        # Fitting perspective
58        try:
59            import sans.perspectives.fitting as module   
60            fitting_plug = module.Plugin()
61            self.gui.add_perspective(fitting_plug)
62        except:
63            logging.error("SansView: could not find Fitting plug-in module")
64            logging.error(sys.exc_value) 
65           
66        # P(r) perspective
67        try:
68            import sans.perspectives.pr as module   
69            pr_plug = module.Plugin(standalone=False)
70            self.gui.add_perspective(pr_plug)
71        except:
72            logging.error("SansView: could not find P(r) plug-in module") 
73            logging.error(sys.exc_value) 
74       
75        #Invariant perspective
76        try:
77            import sans.perspectives.invariant as module   
78            invariant_plug = module.Plugin(standalone=False)
79            self.gui.add_perspective(invariant_plug)
80        except:
81            raise
82            logging.error("SansView: could not find Invariant plug-in module") 
83            logging.error(sys.exc_value) 
84       
85        #Calculator perspective   
86        try:
87            import sans.perspectives.calculator as module   
88            calculator_plug = module.Plugin(standalone=False)
89            self.gui.add_perspective(calculator_plug)
90        except:
91            logging.error("SansView: could not find Calculator plug-in module")
92            logging.error(sys.exc_value) 
93
94           
95        # Add welcome page
96        self.gui.set_welcome_panel(WelcomePanel)
97     
98        # Build the GUI
99        self.gui.build_gui()
100       
101        # Start the main loop
102        self.gui.MainLoop() 
103       
104
105
106if __name__ == "__main__": 
107    from multiprocessing import freeze_support
108    freeze_support()
109    #Process(target=SansView).start()
110    sansview = SansView()
111
112   
Note: See TracBrowser for help on using the repository browser.