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