[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 |
---|
[0912feab] | 24 | from sans.guiframe.gui_style import GUIFRAME |
---|
[e2da832] | 25 | from welcome_panel import WelcomePanel |
---|
[d89f09b] | 26 | # For py2exe, import config here |
---|
| 27 | import local_config |
---|
[9f73a1d] | 28 | import logging |
---|
[d89f09b] | 29 | |
---|
[57acd41] | 30 | # Application dimensions |
---|
| 31 | APP_HEIGHT = 800 |
---|
| 32 | APP_WIDTH = 1000 |
---|
[193416e] | 33 | GSTYLE = GUIFRAME.MULTIPLE_APPLICATIONS|GUIFRAME.TOOL_ON |
---|
| 34 | |
---|
[57acd41] | 35 | class SansViewApp(gui_manager.ViewApp): |
---|
[5062bbf] | 36 | """ |
---|
| 37 | """ |
---|
[68c53a4] | 38 | |
---|
[2d39535] | 39 | |
---|
[d89f09b] | 40 | class SansView(): |
---|
[5062bbf] | 41 | """ |
---|
| 42 | """ |
---|
[d89f09b] | 43 | def __init__(self): |
---|
| 44 | """ |
---|
| 45 | """ |
---|
| 46 | #from gui_manager import ViewApp |
---|
[57acd41] | 47 | self.gui = SansViewApp(0) |
---|
[9455d77] | 48 | # Set the application manager for the GUI |
---|
| 49 | self.gui.set_manager(self) |
---|
[d89f09b] | 50 | # Add perspectives to the basic application |
---|
| 51 | # Additional perspectives can still be loaded |
---|
| 52 | # dynamically |
---|
[365a17f6] | 53 | # Note: py2exe can't find dynamically loaded |
---|
| 54 | # modules. We load the fitting module here |
---|
| 55 | # to ensure a complete Windows executable build. |
---|
[4d6cce0] | 56 | |
---|
[1c8015f] | 57 | # P(r) perspective |
---|
| 58 | try: |
---|
| 59 | import sans.perspectives.pr as module |
---|
[4d6cce0] | 60 | pr_plug = module.Plugin(standalone=False) |
---|
| 61 | self.gui.add_perspective(pr_plug) |
---|
[1c8015f] | 62 | except: |
---|
[75fbd17] | 63 | raise |
---|
| 64 | #logging.error("SansView: could not find P(r) plug-in module") |
---|
| 65 | #logging.error(sys.exc_value) |
---|
[4d6cce0] | 66 | |
---|
| 67 | #Invariant perspective |
---|
| 68 | try: |
---|
| 69 | import sans.perspectives.invariant as module |
---|
| 70 | invariant_plug = module.Plugin(standalone=False) |
---|
| 71 | self.gui.add_perspective(invariant_plug) |
---|
| 72 | except: |
---|
[a07e72f] | 73 | raise |
---|
| 74 | #logging.error("SansView: could not find Invariant plug-in module") |
---|
| 75 | #logging.error(sys.exc_value) |
---|
[4d6cce0] | 76 | |
---|
[6e0e2d85] | 77 | #Calculator perspective |
---|
| 78 | try: |
---|
| 79 | import sans.perspectives.calculator as module |
---|
| 80 | calculator_plug = module.Plugin(standalone=False) |
---|
| 81 | self.gui.add_perspective(calculator_plug) |
---|
| 82 | except: |
---|
[3658abed] | 83 | logging.error("SansView: could not find Calculator plug-in module") |
---|
| 84 | logging.error(sys.exc_value) |
---|
[a07e72f] | 85 | """ |
---|
[6e0e2d85] | 86 | # theory perspective |
---|
| 87 | try: |
---|
| 88 | import sans.perspectives.theory as module |
---|
| 89 | theory_plug = module.Plugin(standalone=False) |
---|
| 90 | self.gui.add_perspective(theory_plug) |
---|
| 91 | except: |
---|
[4ea3600] | 92 | logging.error("SansView: could not find theory plug-in module") |
---|
[a07e72f] | 93 | logging.error(sys.exc_value) |
---|
| 94 | """ |
---|
[4ea3600] | 95 | |
---|
[ba69349] | 96 | # Fitting perspective |
---|
| 97 | import perspectives.fitting as module |
---|
| 98 | fitting_plug = module.Plugin() |
---|
| 99 | self.gui.add_perspective(fitting_plug) |
---|
[4d6cce0] | 100 | |
---|
[e2da832] | 101 | # Add welcome page |
---|
| 102 | self.gui.set_welcome_panel(WelcomePanel) |
---|
| 103 | |
---|
[d89f09b] | 104 | # Build the GUI |
---|
| 105 | self.gui.build_gui() |
---|
| 106 | |
---|
| 107 | # Start the main loop |
---|
| 108 | self.gui.MainLoop() |
---|
[c363d74] | 109 | |
---|
[d89f09b] | 110 | |
---|
| 111 | if __name__ == "__main__": |
---|
| 112 | sansview = SansView() |
---|