1 | """ |
---|
2 | This software was developed by the University of Tennessee as part of the |
---|
3 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
4 | project funded by the US National Science Foundation. |
---|
5 | |
---|
6 | See the license text in license.txt |
---|
7 | |
---|
8 | copyright 2009, University of Tennessee |
---|
9 | """ |
---|
10 | import wx |
---|
11 | from sans.guiframe import gui_manager |
---|
12 | from welcome_panel import WelcomePanel |
---|
13 | # For py2exe, import config here |
---|
14 | import local_config |
---|
15 | import logging |
---|
16 | |
---|
17 | # Application dimensions |
---|
18 | APP_HEIGHT = 800 |
---|
19 | APP_WIDTH = 1000 |
---|
20 | |
---|
21 | class SansViewApp(gui_manager.ViewApp): |
---|
22 | def OnInit(self): |
---|
23 | screen_size = wx.GetDisplaySize() |
---|
24 | app_height = APP_HEIGHT if screen_size[1]>APP_HEIGHT else screen_size[1]-50 |
---|
25 | app_width = APP_WIDTH if screen_size[0]>APP_WIDTH else screen_size[0]-50 |
---|
26 | |
---|
27 | self.frame = gui_manager.ViewerFrame(None, -1, local_config.__appname__, |
---|
28 | window_height=app_height, window_width=app_width) |
---|
29 | self.frame.Show(True) |
---|
30 | |
---|
31 | if hasattr(self.frame, 'special'): |
---|
32 | self.frame.special.SetCurrent() |
---|
33 | self.SetTopWindow(self.frame) |
---|
34 | return True |
---|
35 | |
---|
36 | class SansView(): |
---|
37 | |
---|
38 | def __init__(self): |
---|
39 | """ |
---|
40 | |
---|
41 | """ |
---|
42 | #from gui_manager import ViewApp |
---|
43 | self.gui = SansViewApp(0) |
---|
44 | # Set the application manager for the GUI |
---|
45 | self.gui.set_manager(self) |
---|
46 | # Add perspectives to the basic application |
---|
47 | # Additional perspectives can still be loaded |
---|
48 | # dynamically |
---|
49 | # Note: py2exe can't find dynamically loaded |
---|
50 | # modules. We load the fitting module here |
---|
51 | # to ensure a complete Windows executable build. |
---|
52 | |
---|
53 | # P(r) perspective |
---|
54 | try: |
---|
55 | import sans.perspectives.pr as module |
---|
56 | self.fitting_plug = module.Plugin(standalone=False) |
---|
57 | self.gui.add_perspective(self.fitting_plug) |
---|
58 | except: |
---|
59 | logging.error("SansView: could not find P(r) plug-in module") |
---|
60 | |
---|
61 | #Calculator perspective |
---|
62 | try: |
---|
63 | import sans.perspectives.calculator as module |
---|
64 | calculator_plug = module.Plugin(standalone=False) |
---|
65 | self.gui.add_perspective(calculator_plug) |
---|
66 | except: |
---|
67 | logging.error("SansView: could not find Calculator plug-in module") |
---|
68 | |
---|
69 | # theory perspective |
---|
70 | try: |
---|
71 | import sans.perspectives.theory as module |
---|
72 | theory_plug = module.Plugin(standalone=False) |
---|
73 | self.gui.add_perspective(theory_plug) |
---|
74 | except: |
---|
75 | raise |
---|
76 | #logging.error("SansView: could not find theory plug-in module") |
---|
77 | # Fitting perspective |
---|
78 | import perspectives.fitting as module |
---|
79 | self.fitting_plug = module.Plugin() |
---|
80 | self.gui.add_perspective(self.fitting_plug) |
---|
81 | |
---|
82 | # Add welcome page |
---|
83 | self.gui.set_welcome_panel(WelcomePanel) |
---|
84 | |
---|
85 | # Build the GUI |
---|
86 | self.gui.build_gui() |
---|
87 | |
---|
88 | # Start the main loop |
---|
89 | self.gui.MainLoop() |
---|
90 | |
---|
91 | def on_close_welcome_panel(self): |
---|
92 | """ |
---|
93 | When closing the welcome panel, set to the default perspective |
---|
94 | """ |
---|
95 | self.gui.set_default_perspective() |
---|
96 | |
---|
97 | |
---|
98 | |
---|
99 | if __name__ == "__main__": |
---|
100 | sansview = SansView() |
---|