source: sasview/sansview/sansview.py @ 18a8359

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

fixed a bug on py2exe

  • Property mode set to 100644
File size: 3.8 KB
RevLine 
[e2da832]1
[5062bbf]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################################################################################
[e2da832]11
[d89f09b]12import wx
[b9b9930]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
[d89f09b]23from sans.guiframe import gui_manager
[0912feab]24from sans.guiframe.gui_style import GUIFRAME
[e2da832]25from welcome_panel import WelcomePanel
[d89f09b]26# For py2exe, import config here
27import local_config
[9f73a1d]28import logging
[d89f09b]29
[57acd41]30# Application dimensions
[3b72b36]31APP_HEIGHT = 820
32APP_WIDTH  = 1050
[193416e]33GSTYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.TOOL_ON
34
[57acd41]35class SansViewApp(gui_manager.ViewApp):
[5062bbf]36    """
37    """
[68c53a4]38 
[2d39535]39
[d89f09b]40class SansView():
[5062bbf]41    """
42    """
[d89f09b]43    def __init__(self):
44        """
45        """
46        #from gui_manager import ViewApp
[57acd41]47        self.gui = SansViewApp(0) 
[9455d77]48        # Set the application manager for the GUI
49        self.gui.set_manager(self)
[d89f09b]50        # Add perspectives to the basic application
51        # Additional perspectives can still be loaded
52        # dynamically
[365a17f6]53        # Note: py2exe can't find dynamically loaded
54        # modules. We load the fitting module here
55        # to ensure a complete Windows executable build.
[46bf3b1]56
57        # Fitting perspective
58        import perspectives.fitting as module   
59        fitting_plug = module.Plugin()
60        self.gui.add_perspective(fitting_plug)
61
[1c8015f]62        # P(r) perspective
63        try:
64            import sans.perspectives.pr as module   
[4d6cce0]65            pr_plug = module.Plugin(standalone=False)
66            self.gui.add_perspective(pr_plug)
[1c8015f]67        except:
[75fbd17]68            raise
69            #logging.error("SansView: could not find P(r) plug-in module")
70            #logging.error(sys.exc_value) 
[4d6cce0]71       
72        #Invariant perspective
73        try:
74            import sans.perspectives.invariant as module   
75            invariant_plug = module.Plugin(standalone=False)
76            self.gui.add_perspective(invariant_plug)
77        except:
[a07e72f]78            raise
79            #logging.error("SansView: could not find Invariant plug-in module")
80            #logging.error(sys.exc_value) 
[4d6cce0]81       
[6e0e2d85]82        #Calculator perspective   
83        try:
84            import sans.perspectives.calculator as module   
85            calculator_plug = module.Plugin(standalone=False)
86            self.gui.add_perspective(calculator_plug)
87        except:
[3658abed]88            logging.error("SansView: could not find Calculator plug-in module")
89            logging.error(sys.exc_value) 
[46bf3b1]90           
91        """
[6e0e2d85]92        # theory perspective
93        try:
94            import sans.perspectives.theory as module   
95            theory_plug = module.Plugin(standalone=False)
96            self.gui.add_perspective(theory_plug)
97        except:
[4ea3600]98            logging.error("SansView: could not find theory plug-in module")
[a07e72f]99            logging.error(sys.exc_value)
[3b72b36]100        """ 
101           
102        # Fitting perspective
103        import perspectives.fitting as module   
104        fitting_plug = module.Plugin()
105        self.gui.add_perspective(fitting_plug)
[4d6cce0]106       
[e2da832]107        # Add welcome page
108        self.gui.set_welcome_panel(WelcomePanel)
109     
[d89f09b]110        # Build the GUI
111        self.gui.build_gui()
112       
113        # Start the main loop
114        self.gui.MainLoop() 
[c363d74]115       
[d89f09b]116
117if __name__ == "__main__": 
118    sansview = SansView()
Note: See TracBrowser for help on using the repository browser.