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