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