source: sasview/sansview/sansview.py @ 5559171

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 5559171 was 5559171, checked in by Jae Cho <jhjcho@…>, 12 years ago

reload sys depending on py version

  • Property mode set to 100644
File size: 3.9 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################################################################################
11import os
12import logging
13logging.basicConfig(level=logging.INFO,
14                    format='%(asctime)s %(levelname)s %(message)s',
15                    filename=os.path.join(os.path.expanduser("~"),'sansview.log'))
16
17import wx
18import sys
19# The below will make sure that sansview application uses the matplotlib font
20# bundled with sansview.
21if hasattr(sys, 'frozen'):
22    mplconfigdir = os.path.join(os.path.expanduser("~"), '.matplotlib')
23    if not os.path.exists(mplconfigdir):
24        os.mkdir(mplconfigdir)
25    os.environ['MPLCONFIGDIR'] = mplconfigdir
26    if sys.version_info < (2, 7):
27        reload(sys)
28    sys.setdefaultencoding("iso-8859-1")
29from sans.guiframe import gui_manager
30from sans.guiframe.gui_style import GUIFRAME
31from welcome_panel import WelcomePanel
32# For py2exe, import config here
33import local_config
34
35def run():
36    sys.path.append(os.path.join("..","..",".."))
37    from multiprocessing import freeze_support
38    freeze_support()
39    sansview = SansView()
40       
41class SansViewApp(gui_manager.ViewApp):
42    """
43    """
44 
45
46class SansView():
47    """
48    """
49    def __init__(self):
50        """
51        """
52        #from gui_manager import ViewApp
53        self.gui = SansViewApp(0) 
54        # Set the application manager for the GUI
55        self.gui.set_manager(self)
56        # Add perspectives to the basic application
57        # Additional perspectives can still be loaded
58        # dynamically
59        # Note: py2exe can't find dynamically loaded
60        # modules. We load the fitting module here
61        # to ensure a complete Windows executable build.
62       
63        # Fitting perspective
64        try:
65            import sans.perspectives.fitting as module   
66            fitting_plug = module.Plugin()
67            self.gui.add_perspective(fitting_plug)
68        except:
69            logging.error("SansView: could not find Fitting plug-in module")
70            logging.error(sys.exc_value) 
71           
72        # P(r) perspective
73        try:
74            import sans.perspectives.pr as module   
75            pr_plug = module.Plugin(standalone=False)
76            self.gui.add_perspective(pr_plug)
77        except:
78            logging.error("SansView: could not find P(r) plug-in module") 
79            logging.error(sys.exc_value) 
80       
81        #Invariant perspective
82        try:
83            import sans.perspectives.invariant as module   
84            invariant_plug = module.Plugin(standalone=False)
85            self.gui.add_perspective(invariant_plug)
86        except:
87            raise
88            logging.error("SansView: could not find Invariant plug-in module") 
89            logging.error(sys.exc_value) 
90       
91        #Calculator perspective   
92        try:
93            import sans.perspectives.calculator as module   
94            calculator_plug = module.Plugin(standalone=False)
95            self.gui.add_perspective(calculator_plug)
96        except:
97            logging.error("SansView: could not find Calculator plug-in module")
98            logging.error(sys.exc_value) 
99
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
111
112if __name__ == "__main__": 
113    from multiprocessing import freeze_support
114    freeze_support()
115    #Process(target=SansView).start()
116    sansview = SansView()
117
118   
Note: See TracBrowser for help on using the repository browser.