[e2da832] | 1 | |
---|
[5062bbf] | 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 | ################################################################################ |
---|
[e2da832] | 11 | |
---|
[d89f09b] | 12 | import wx |
---|
[b9b9930] | 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 | |
---|
[d89f09b] | 23 | from sans.guiframe import gui_manager |
---|
[e2da832] | 24 | from welcome_panel import WelcomePanel |
---|
[d89f09b] | 25 | # For py2exe, import config here |
---|
| 26 | import local_config |
---|
[9f73a1d] | 27 | import logging |
---|
[d89f09b] | 28 | |
---|
[57acd41] | 29 | # Application dimensions |
---|
| 30 | APP_HEIGHT = 800 |
---|
| 31 | APP_WIDTH = 1000 |
---|
| 32 | |
---|
| 33 | class SansViewApp(gui_manager.ViewApp): |
---|
[5062bbf] | 34 | """ |
---|
| 35 | """ |
---|
[57acd41] | 36 | def OnInit(self): |
---|
[5062bbf] | 37 | """ |
---|
| 38 | """ |
---|
[2a1be2d9] | 39 | screen_size = wx.GetDisplaySize() |
---|
| 40 | app_height = APP_HEIGHT if screen_size[1]>APP_HEIGHT else screen_size[1]-50 |
---|
| 41 | app_width = APP_WIDTH if screen_size[0]>APP_WIDTH else screen_size[0]-50 |
---|
| 42 | |
---|
[57acd41] | 43 | self.frame = gui_manager.ViewerFrame(None, -1, local_config.__appname__, |
---|
[2a1be2d9] | 44 | window_height=app_height, window_width=app_width) |
---|
[57acd41] | 45 | self.frame.Show(True) |
---|
| 46 | |
---|
| 47 | if hasattr(self.frame, 'special'): |
---|
| 48 | self.frame.special.SetCurrent() |
---|
| 49 | self.SetTopWindow(self.frame) |
---|
| 50 | return True |
---|
[2d39535] | 51 | |
---|
[d89f09b] | 52 | class SansView(): |
---|
[5062bbf] | 53 | """ |
---|
| 54 | """ |
---|
[d89f09b] | 55 | def __init__(self): |
---|
| 56 | """ |
---|
| 57 | """ |
---|
| 58 | #from gui_manager import ViewApp |
---|
[57acd41] | 59 | self.gui = SansViewApp(0) |
---|
[9455d77] | 60 | # Set the application manager for the GUI |
---|
| 61 | self.gui.set_manager(self) |
---|
[d89f09b] | 62 | # Add perspectives to the basic application |
---|
| 63 | # Additional perspectives can still be loaded |
---|
| 64 | # dynamically |
---|
[365a17f6] | 65 | # Note: py2exe can't find dynamically loaded |
---|
| 66 | # modules. We load the fitting module here |
---|
| 67 | # to ensure a complete Windows executable build. |
---|
[4d6cce0] | 68 | |
---|
[1c8015f] | 69 | # P(r) perspective |
---|
| 70 | try: |
---|
| 71 | import sans.perspectives.pr as module |
---|
[4d6cce0] | 72 | pr_plug = module.Plugin(standalone=False) |
---|
| 73 | self.gui.add_perspective(pr_plug) |
---|
[1c8015f] | 74 | except: |
---|
| 75 | logging.error("SansView: could not find P(r) plug-in module") |
---|
[4d6cce0] | 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 | logging.error("SansView: could not find Invariant plug-in module") |
---|
| 84 | |
---|
[6e0e2d85] | 85 | #Calculator perspective |
---|
| 86 | try: |
---|
| 87 | import sans.perspectives.calculator as module |
---|
| 88 | calculator_plug = module.Plugin(standalone=False) |
---|
| 89 | self.gui.add_perspective(calculator_plug) |
---|
| 90 | except: |
---|
| 91 | logging.error("SansView: could not find Calculator plug-in module") |
---|
| 92 | |
---|
| 93 | # theory perspective |
---|
| 94 | try: |
---|
| 95 | import sans.perspectives.theory as module |
---|
| 96 | theory_plug = module.Plugin(standalone=False) |
---|
| 97 | self.gui.add_perspective(theory_plug) |
---|
| 98 | except: |
---|
[4ea3600] | 99 | logging.error("SansView: could not find theory plug-in module") |
---|
| 100 | |
---|
[ba69349] | 101 | # Fitting perspective |
---|
| 102 | import perspectives.fitting as module |
---|
| 103 | fitting_plug = module.Plugin() |
---|
| 104 | self.gui.add_perspective(fitting_plug) |
---|
[4d6cce0] | 105 | |
---|
[e2da832] | 106 | # Add welcome page |
---|
| 107 | self.gui.set_welcome_panel(WelcomePanel) |
---|
| 108 | |
---|
[d89f09b] | 109 | # Build the GUI |
---|
| 110 | self.gui.build_gui() |
---|
| 111 | |
---|
| 112 | # Start the main loop |
---|
| 113 | self.gui.MainLoop() |
---|
[c363d74] | 114 | |
---|
[d89f09b] | 115 | |
---|
| 116 | if __name__ == "__main__": |
---|
| 117 | sansview = SansView() |
---|