source: sasview/guiframe/dummyapp.py @ f2776f6

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 f2776f6 was 7bb61da, checked in by Mathieu Doucet <doucetm@…>, 16 years ago

Making sure new plottables are added with the right scale.

  • Property mode set to 100644
File size: 575 bytes
Line 
1"""
2    Dummy application.
3    Allows the user to set an external data manager
4"""
5import gui_manager
6
7class SansView():
8   
9    def __init__(self):
10        """
11            Initialization
12        """
13        from gui_manager import ViewApp
14        self.gui = ViewApp(0)
15       
16        # Build the GUI
17        self.gui.build_gui()
18       
19        # Set the application manager for the GUI
20        self.gui.set_manager(self)
21       
22        # Start the main loop
23        self.gui.MainLoop() 
24
25if __name__ == "__main__": 
26    sansview = SansView()
Note: See TracBrowser for help on using the repository browser.