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