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 f425805 was
cc4f0b2,
checked in by Gervaise Alina <gervyh@…>, 13 years ago
|
update simview.py
|
-
Property mode set to
100644
|
File size:
1.9 KB
|
Rev | Line | |
---|
[b7b9c16] | 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 | |
---|
| 12 | import wx |
---|
| 13 | import os |
---|
| 14 | import sys |
---|
| 15 | # The below will make sure that sansview application uses the matplotlib font |
---|
| 16 | # bundled with sansview. |
---|
| 17 | if hasattr(sys, 'frozen'): |
---|
| 18 | mplconfigdir = os.path.join(sys.prefix, '.matplotlib') |
---|
| 19 | if not os.path.exists(mplconfigdir): |
---|
| 20 | os.mkdir(mplconfigdir) |
---|
| 21 | os.environ['MPLCONFIGDIR'] = mplconfigdir |
---|
| 22 | |
---|
| 23 | from sans.guiframe import gui_manager |
---|
| 24 | from sans.guiframe.gui_style import GUIFRAME |
---|
| 25 | from welcome_panel import WelcomePanel |
---|
| 26 | # For py2exe, import config here |
---|
| 27 | import local_config |
---|
| 28 | import logging |
---|
| 29 | |
---|
| 30 | |
---|
[cc4f0b2] | 31 | class SimViewApp(gui_manager.ViewApp): |
---|
[b7b9c16] | 32 | """ |
---|
| 33 | """ |
---|
| 34 | |
---|
[cc4f0b2] | 35 | class SimView(): |
---|
[b7b9c16] | 36 | |
---|
| 37 | def __init__(self): |
---|
| 38 | """ |
---|
| 39 | Initialize application |
---|
| 40 | """ |
---|
| 41 | #from gui_manager import ViewApp |
---|
[cc4f0b2] | 42 | self.gui = SimViewApp(0) |
---|
[b7b9c16] | 43 | |
---|
| 44 | # Add perspectives to the basic application |
---|
| 45 | # Additional perspectives can still be loaded |
---|
| 46 | # dynamically |
---|
| 47 | # Note: py2exe can't find dynamically loaded |
---|
| 48 | # modules. We load the fitting module here |
---|
| 49 | # to ensure a complete Windows executable build. |
---|
| 50 | |
---|
| 51 | # Simulation perspective |
---|
| 52 | import sans.perspectives.simulation as module |
---|
| 53 | self.gui.add_perspective(module.Plugin()) |
---|
| 54 | |
---|
| 55 | # Build the GUI |
---|
| 56 | self.gui.build_gui() |
---|
| 57 | |
---|
| 58 | # Set the application manager for the GUI |
---|
| 59 | self.gui.set_manager(self) |
---|
| 60 | |
---|
| 61 | # Start the main loop |
---|
| 62 | self.gui.MainLoop() |
---|
| 63 | |
---|
| 64 | if __name__ == "__main__": |
---|
[cc4f0b2] | 65 | sansview = SimView() |
---|
Note: See
TracBrowser
for help on using the repository browser.