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