[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 | ################################################################################ |
---|
[6bdf6ae] | 11 | import os |
---|
| 12 | import logging |
---|
| 13 | logging.basicConfig(level=logging.INFO, |
---|
| 14 | format='%(asctime)s %(levelname)s %(message)s', |
---|
| 15 | filename=os.path.join(os.path.expanduser("~"),'sansview.log')) |
---|
[fa597990] | 16 | |
---|
| 17 | import wx |
---|
| 18 | import sys |
---|
| 19 | # The below will make sure that sansview application uses the matplotlib font |
---|
| 20 | # bundled with sansview. |
---|
| 21 | if hasattr(sys, 'frozen'): |
---|
[709b1dc] | 22 | mplconfigdir = os.path.join(os.path.expanduser("~"), '.matplotlib') |
---|
[fa597990] | 23 | if not os.path.exists(mplconfigdir): |
---|
| 24 | os.mkdir(mplconfigdir) |
---|
| 25 | os.environ['MPLCONFIGDIR'] = mplconfigdir |
---|
[270cc72e] | 26 | sys.setdefaultencoding("iso-8859-1") |
---|
[fa597990] | 27 | from sans.guiframe import gui_manager |
---|
| 28 | from sans.guiframe.gui_style import GUIFRAME |
---|
| 29 | from welcome_panel import WelcomePanel |
---|
| 30 | # For py2exe, import config here |
---|
| 31 | import local_config |
---|
| 32 | |
---|
[ca6481c] | 33 | def run(): |
---|
[0bc2ed1] | 34 | sys.path.append(os.path.join("..","..","..")) |
---|
[ca6481c] | 35 | from multiprocessing import freeze_support |
---|
| 36 | freeze_support() |
---|
| 37 | sansview = SansView() |
---|
| 38 | |
---|
[fa597990] | 39 | class SansViewApp(gui_manager.ViewApp): |
---|
| 40 | """ |
---|
| 41 | """ |
---|
| 42 | |
---|
| 43 | |
---|
| 44 | class SansView(): |
---|
| 45 | """ |
---|
| 46 | """ |
---|
| 47 | def __init__(self): |
---|
| 48 | """ |
---|
| 49 | """ |
---|
| 50 | #from gui_manager import ViewApp |
---|
| 51 | self.gui = SansViewApp(0) |
---|
| 52 | # Set the application manager for the GUI |
---|
| 53 | self.gui.set_manager(self) |
---|
| 54 | # Add perspectives to the basic application |
---|
| 55 | # Additional perspectives can still be loaded |
---|
| 56 | # dynamically |
---|
| 57 | # Note: py2exe can't find dynamically loaded |
---|
| 58 | # modules. We load the fitting module here |
---|
| 59 | # to ensure a complete Windows executable build. |
---|
[d4c19e5] | 60 | |
---|
[fa597990] | 61 | # Fitting perspective |
---|
[d4c19e5] | 62 | try: |
---|
| 63 | import sans.perspectives.fitting as module |
---|
| 64 | fitting_plug = module.Plugin() |
---|
| 65 | self.gui.add_perspective(fitting_plug) |
---|
| 66 | except: |
---|
| 67 | logging.error("SansView: could not find Fitting plug-in module") |
---|
| 68 | logging.error(sys.exc_value) |
---|
| 69 | |
---|
[fa597990] | 70 | # P(r) perspective |
---|
| 71 | try: |
---|
| 72 | import sans.perspectives.pr as module |
---|
| 73 | pr_plug = module.Plugin(standalone=False) |
---|
| 74 | self.gui.add_perspective(pr_plug) |
---|
| 75 | except: |
---|
| 76 | logging.error("SansView: could not find P(r) plug-in module") |
---|
| 77 | logging.error(sys.exc_value) |
---|
| 78 | |
---|
| 79 | #Invariant perspective |
---|
| 80 | try: |
---|
| 81 | import sans.perspectives.invariant as module |
---|
| 82 | invariant_plug = module.Plugin(standalone=False) |
---|
| 83 | self.gui.add_perspective(invariant_plug) |
---|
| 84 | except: |
---|
| 85 | raise |
---|
| 86 | logging.error("SansView: could not find Invariant plug-in module") |
---|
| 87 | logging.error(sys.exc_value) |
---|
| 88 | |
---|
| 89 | #Calculator perspective |
---|
| 90 | try: |
---|
| 91 | import sans.perspectives.calculator as module |
---|
| 92 | calculator_plug = module.Plugin(standalone=False) |
---|
| 93 | self.gui.add_perspective(calculator_plug) |
---|
| 94 | except: |
---|
| 95 | logging.error("SansView: could not find Calculator plug-in module") |
---|
| 96 | logging.error(sys.exc_value) |
---|
[d4c19e5] | 97 | |
---|
| 98 | |
---|
[fa597990] | 99 | # Add welcome page |
---|
| 100 | self.gui.set_welcome_panel(WelcomePanel) |
---|
| 101 | |
---|
| 102 | # Build the GUI |
---|
| 103 | self.gui.build_gui() |
---|
| 104 | |
---|
| 105 | # Start the main loop |
---|
| 106 | self.gui.MainLoop() |
---|
| 107 | |
---|
| 108 | |
---|
[930f559] | 109 | |
---|
[fa597990] | 110 | if __name__ == "__main__": |
---|
[5e491e6] | 111 | from multiprocessing import freeze_support |
---|
| 112 | freeze_support() |
---|
[7a7dbf4] | 113 | #Process(target=SansView).start() |
---|
[930f559] | 114 | sansview = SansView() |
---|
| 115 | |
---|
| 116 | |
---|