[e2da832] | 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 | """ |
---|
[d89f09b] | 10 | import wx |
---|
| 11 | from sans.guiframe import gui_manager |
---|
[e2da832] | 12 | from welcome_panel import WelcomePanel |
---|
[d89f09b] | 13 | # For py2exe, import config here |
---|
| 14 | import local_config |
---|
[9f73a1d] | 15 | import logging |
---|
[d89f09b] | 16 | |
---|
[57acd41] | 17 | # Application dimensions |
---|
| 18 | APP_HEIGHT = 800 |
---|
| 19 | APP_WIDTH = 1000 |
---|
| 20 | |
---|
| 21 | class SansViewApp(gui_manager.ViewApp): |
---|
| 22 | def OnInit(self): |
---|
[2a1be2d9] | 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 | |
---|
[57acd41] | 27 | self.frame = gui_manager.ViewerFrame(None, -1, local_config.__appname__, |
---|
[2a1be2d9] | 28 | window_height=app_height, window_width=app_width) |
---|
[57acd41] | 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 |
---|
[2d39535] | 35 | |
---|
[d89f09b] | 36 | class SansView(): |
---|
| 37 | |
---|
| 38 | def __init__(self): |
---|
| 39 | """ |
---|
| 40 | |
---|
| 41 | """ |
---|
| 42 | #from gui_manager import ViewApp |
---|
[57acd41] | 43 | self.gui = SansViewApp(0) |
---|
[d89f09b] | 44 | |
---|
| 45 | # Add perspectives to the basic application |
---|
| 46 | # Additional perspectives can still be loaded |
---|
| 47 | # dynamically |
---|
[365a17f6] | 48 | # Note: py2exe can't find dynamically loaded |
---|
| 49 | # modules. We load the fitting module here |
---|
| 50 | # to ensure a complete Windows executable build. |
---|
[2d39535] | 51 | |
---|
[1c8015f] | 52 | # P(r) perspective |
---|
| 53 | try: |
---|
| 54 | import sans.perspectives.pr as module |
---|
| 55 | fitting_plug = module.Plugin(standalone=False) |
---|
| 56 | self.gui.add_perspective(fitting_plug) |
---|
| 57 | except: |
---|
| 58 | logging.error("SansView: could not find P(r) plug-in module") |
---|
| 59 | |
---|
[2d39535] | 60 | # Fitting perspective |
---|
[365a17f6] | 61 | import perspectives.fitting as module |
---|
| 62 | fitting_plug = module.Plugin() |
---|
| 63 | self.gui.add_perspective(fitting_plug) |
---|
[e5c6fff] | 64 | |
---|
[e2da832] | 65 | # Add welcome page |
---|
| 66 | self.gui.set_welcome_panel(WelcomePanel) |
---|
| 67 | |
---|
[d89f09b] | 68 | # Build the GUI |
---|
| 69 | self.gui.build_gui() |
---|
| 70 | |
---|
| 71 | # Set the application manager for the GUI |
---|
| 72 | self.gui.set_manager(self) |
---|
| 73 | |
---|
| 74 | # Start the main loop |
---|
| 75 | self.gui.MainLoop() |
---|
| 76 | |
---|
| 77 | |
---|
| 78 | if __name__ == "__main__": |
---|
| 79 | sansview = SansView() |
---|