source: sasview/sansview/sansview.py @ ac2ceb9b

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

Re #3 Removing plugin models from sansview app (now in fitting).

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