[fa597990] | 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 | |
---|
| 31 | class SansViewApp(gui_manager.ViewApp): |
---|
| 32 | """ |
---|
| 33 | """ |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | class SansView(): |
---|
| 37 | """ |
---|
| 38 | """ |
---|
| 39 | def __init__(self): |
---|
| 40 | """ |
---|
| 41 | """ |
---|
| 42 | #from gui_manager import ViewApp |
---|
| 43 | self.gui = SansViewApp(0) |
---|
| 44 | # Set the application manager for the GUI |
---|
| 45 | self.gui.set_manager(self) |
---|
| 46 | # Add perspectives to the basic application |
---|
| 47 | # Additional perspectives can still be loaded |
---|
| 48 | # dynamically |
---|
| 49 | # Note: py2exe can't find dynamically loaded |
---|
| 50 | # modules. We load the fitting module here |
---|
| 51 | # to ensure a complete Windows executable build. |
---|
[d4c19e5] | 52 | |
---|
[fa597990] | 53 | # Fitting perspective |
---|
[d4c19e5] | 54 | try: |
---|
| 55 | import sans.perspectives.fitting as module |
---|
| 56 | fitting_plug = module.Plugin() |
---|
| 57 | self.gui.add_perspective(fitting_plug) |
---|
| 58 | except: |
---|
| 59 | logging.error("SansView: could not find Fitting plug-in module") |
---|
| 60 | logging.error(sys.exc_value) |
---|
| 61 | |
---|
[fa597990] | 62 | # P(r) perspective |
---|
| 63 | try: |
---|
| 64 | import sans.perspectives.pr as module |
---|
| 65 | pr_plug = module.Plugin(standalone=False) |
---|
| 66 | self.gui.add_perspective(pr_plug) |
---|
| 67 | except: |
---|
| 68 | logging.error("SansView: could not find P(r) plug-in module") |
---|
| 69 | logging.error(sys.exc_value) |
---|
| 70 | |
---|
| 71 | #Invariant perspective |
---|
| 72 | try: |
---|
| 73 | import sans.perspectives.invariant as module |
---|
| 74 | invariant_plug = module.Plugin(standalone=False) |
---|
| 75 | self.gui.add_perspective(invariant_plug) |
---|
| 76 | except: |
---|
| 77 | raise |
---|
| 78 | logging.error("SansView: could not find Invariant plug-in module") |
---|
| 79 | logging.error(sys.exc_value) |
---|
| 80 | |
---|
| 81 | #Calculator perspective |
---|
| 82 | try: |
---|
| 83 | import sans.perspectives.calculator as module |
---|
| 84 | calculator_plug = module.Plugin(standalone=False) |
---|
| 85 | self.gui.add_perspective(calculator_plug) |
---|
| 86 | except: |
---|
| 87 | logging.error("SansView: could not find Calculator plug-in module") |
---|
| 88 | logging.error(sys.exc_value) |
---|
[d4c19e5] | 89 | |
---|
| 90 | |
---|
[fa597990] | 91 | # Add welcome page |
---|
| 92 | self.gui.set_welcome_panel(WelcomePanel) |
---|
| 93 | |
---|
| 94 | # Build the GUI |
---|
| 95 | self.gui.build_gui() |
---|
| 96 | |
---|
| 97 | # Start the main loop |
---|
| 98 | self.gui.MainLoop() |
---|
| 99 | |
---|
| 100 | |
---|
| 101 | if __name__ == "__main__": |
---|
| 102 | sansview = SansView() |
---|