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