source: sasview/calculatorview/sansviewtool.py @ ea6e8b6

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 ea6e8b6 was cda8c34, checked in by Gervaise Alina <gervyh@…>, 13 years ago

remove scripts folder for calculatorview

  • Property mode set to 100644
File size: 1.8 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
14
15# For py2exe, import config here
16import local_config
17import logging
18import sys
19class SansViewToolApp(gui_manager.ViewApp):
20    """
21    """
22   
23   
24class SansViewTool():
25    """
26    """
27    def __init__(self):
28        """
29        """
30        #from gui_manager import ViewApp
31        self.gui = SansViewToolApp(0) 
32        # Set the application manager for the GUI
33        self.gui.set_manager(self)
34        # Add perspectives to the basic application
35        # Additional perspectives can still be loaded
36        # dynamically
37        # Note: py2exe can't find dynamically loaded
38        # modules. We load the fitting module here
39        # to ensure a complete Windows executable build.
40       
41       
42        #Calculator perspective   
43        try:
44            import sans.perspectives.calculator as module   
45            calculator_plug = module.Plugin(standalone=True)
46            self.gui.add_perspective(calculator_plug)
47        except:
48            logging.error("SansView: could not find Calculator plug-in module")
49            logging.error(sys.exc_value) 
50
51     
52        # Build the GUI
53        self.gui.build_gui()
54       
55        # Start the main loop
56        self.gui.MainLoop() 
57       
58
59if __name__ == "__main__": 
60    sansviewtool = SansViewTool()
Note: See TracBrowser for help on using the repository browser.