source: sasview/inversionview/scripts/PrView.py @ 11f5196

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 11f5196 was 11f5196, checked in by Jae Cho <jhjcho@…>, 13 years ago
  • Property mode set to 100644
File size: 1.3 KB
Line 
1
2#!/usr/bin/env python
3import os
4import sys
5import imp
6import wx
7#import gui_manager
8from sans.guiframe import gui_manager
9from sans.guiframe.gui_manager import _find_local_config
10
11# For py2exe, import config here
12
13
14path = os.getcwd()
15local_config = _find_local_config('local_config', path)
16if local_config is None:
17    path, _ = os.path.split(os.getcwd())
18    local_config = _find_local_config('local_config', path)
19if local_config is None:
20    raise RuntimeError, "PrView cannot located local_config.py"
21
22
23class PrApp(gui_manager.ViewApp):
24    """
25    """
26   
27class PrView():
28    """
29    """
30    def __init__(self):
31        """
32        """
33        #from gui_manager import ViewApp
34        #self.gui = gui_manager.ViewApp(0)
35        self.gui = PrApp(0)
36        # Add perspectives to the basic application
37        # Additional perspectives can still be loaded
38        # dynamically
39        import sans.perspectives.pr as module
40        self.pr_plug = module.Plugin(standalone=True)
41        self.gui.add_perspective(self.pr_plug)
42           
43        # Build the GUI
44        self.gui.build_gui()
45       
46        # Set the application manager for the GUI
47        self.gui.set_manager(self)
48       
49        # Start the main loop
50        self.gui.MainLoop() 
51       
52
53if __name__ == "__main__": 
54    sansview = PrView()
Note: See TracBrowser for help on using the repository browser.