source: sasview/prview/PrView.py @ 3e41f43

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 3e41f43 was 43db4a8, checked in by Mathieu Doucet <doucetm@…>, 14 years ago

prview: propagate renaming changes to trunk

  • Property mode set to 100644
File size: 1.9 KB
Line 
1import wx
2#import gui_manager
3from sans.guiframe import gui_manager
4
5# For py2exe, import config here
6import local_config
7import sys
8from perspectives.pr.pr import NewPrFileEvent
9
10# Application dimensions
11APP_HEIGHT = 780
12APP_WIDTH  = 850
13
14class PrFrame(gui_manager.ViewerFrame):
15    """
16    """
17    def _on_open(self, event):
18        """
19        """
20        wx.PostEvent(self, NewPrFileEvent())
21
22class PrApp(gui_manager.ViewApp):
23    """
24    """
25    def OnInit(self):
26        """
27        """
28        # Check the size of the screen
29        # Add some padding to make sure to clear any OS tool bar
30        screen_size = wx.GetDisplaySize()
31        app_height = APP_HEIGHT if screen_size[1]>APP_HEIGHT else screen_size[1]-50
32        app_width  = APP_WIDTH if screen_size[0]>APP_WIDTH else screen_size[0]-50
33       
34        self.frame = PrFrame(None, -1, local_config.__appname__, 
35                             window_height=app_height, window_width=app_width)   
36        self.frame.Show(True)
37
38        if hasattr(self.frame, 'special'):
39            self.frame.special.SetCurrent()
40        self.SetTopWindow(self.frame)
41        return True
42   
43class SansView():
44    """
45    """
46    def __init__(self):
47        """
48        """
49        #from gui_manager import ViewApp
50        #self.gui = gui_manager.ViewApp(0)
51        self.gui = PrApp(0)
52       
53        # Add perspectives to the basic application
54        # Additional perspectives can still be loaded
55        # dynamically
56        import perspectives.pr as module
57        self.pr_plug = module.Plugin(standalone=True)
58        self.gui.add_perspective(self.pr_plug)
59           
60        # Build the GUI
61        self.gui.build_gui()
62       
63        # Set the application manager for the GUI
64        self.gui.set_manager(self)
65       
66        # Start the main loop
67        self.gui.MainLoop() 
68       
69
70if __name__ == "__main__": 
71    sansview = SansView()
Note: See TracBrowser for help on using the repository browser.