source: sasview/sansview/sansview.py @ 7cc0899

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 7cc0899 was 5062bbf, checked in by Gervaise Alina <gervyh@…>, 14 years ago

working on documentation

  • 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
13from sans.guiframe import gui_manager
14from welcome_panel import WelcomePanel
15# For py2exe, import config here
16import local_config
17import logging
18
19# Application dimensions
20APP_HEIGHT = 800
21APP_WIDTH  = 1000
22
23class SansViewApp(gui_manager.ViewApp):
24    """
25    """
26    def OnInit(self):
27        """
28        """
29        screen_size = wx.GetDisplaySize()
30        app_height = APP_HEIGHT if screen_size[1]>APP_HEIGHT else screen_size[1]-50
31        app_width  = APP_WIDTH if screen_size[0]>APP_WIDTH else screen_size[0]-50
32
33        self.frame = gui_manager.ViewerFrame(None, -1, local_config.__appname__, 
34                             window_height=app_height, window_width=app_width)   
35        self.frame.Show(True)
36
37        if hasattr(self.frame, 'special'):
38            self.frame.special.SetCurrent()
39        self.SetTopWindow(self.frame)
40        return True
41
42class SansView():
43    """
44    """
45    def __init__(self):
46        """
47        """
48        #from gui_manager import ViewApp
49        self.gui = SansViewApp(0) 
50        # Set the application manager for the GUI
51        self.gui.set_manager(self)
52        # Add perspectives to the basic application
53        # Additional perspectives can still be loaded
54        # dynamically
55        # Note: py2exe can't find dynamically loaded
56        # modules. We load the fitting module here
57        # to ensure a complete Windows executable build.
58       
59        # P(r) perspective
60        try:
61            import sans.perspectives.pr as module   
62            pr_plug = module.Plugin(standalone=False)
63            self.gui.add_perspective(pr_plug)
64        except:
65            logging.error("SansView: could not find P(r) plug-in module") 
66       
67        #Invariant perspective
68        try:
69            import sans.perspectives.invariant as module   
70            invariant_plug = module.Plugin(standalone=False)
71            self.gui.add_perspective(invariant_plug)
72        except:
73            logging.error("SansView: could not find Invariant plug-in module") 
74       
75        #Calculator perspective   
76        try:
77            import sans.perspectives.calculator as module   
78            calculator_plug = module.Plugin(standalone=False)
79            self.gui.add_perspective(calculator_plug)
80        except:
81            logging.error("SansView: could not find Calculator plug-in module") 
82           
83        # theory perspective
84        try:
85            import sans.perspectives.theory as module   
86            theory_plug = module.Plugin(standalone=False)
87            self.gui.add_perspective(theory_plug)
88        except:
89            logging.error("SansView: could not find theory plug-in module")
90           
91        # Fitting perspective
92        import perspectives.fitting as module   
93        fitting_plug = module.Plugin()
94        self.gui.add_perspective(fitting_plug)
95       
96        # Add welcome page
97        self.gui.set_welcome_panel(WelcomePanel)
98     
99        # Build the GUI
100        self.gui.build_gui()
101       
102        # Start the main loop
103        self.gui.MainLoop() 
104       
105
106if __name__ == "__main__": 
107    sansview = SansView()
Note: See TracBrowser for help on using the repository browser.