[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 | |
---|
[193416e] | 30 | |
---|
[57acd41] | 31 | class SansViewApp(gui_manager.ViewApp): |
---|
[5062bbf] | 32 | """ |
---|
| 33 | """ |
---|
[68c53a4] | 34 | |
---|
[2d39535] | 35 | |
---|
[d89f09b] | 36 | class SansView(): |
---|
[5062bbf] | 37 | """ |
---|
| 38 | """ |
---|
[d89f09b] | 39 | def __init__(self): |
---|
| 40 | """ |
---|
| 41 | """ |
---|
| 42 | #from gui_manager import ViewApp |
---|
[57acd41] | 43 | self.gui = SansViewApp(0) |
---|
[9455d77] | 44 | # Set the application manager for the GUI |
---|
| 45 | self.gui.set_manager(self) |
---|
[d89f09b] | 46 | # Add perspectives to the basic application |
---|
| 47 | # Additional perspectives can still be loaded |
---|
| 48 | # dynamically |
---|
[365a17f6] | 49 | # Note: py2exe can't find dynamically loaded |
---|
| 50 | # modules. We load the fitting module here |
---|
| 51 | # to ensure a complete Windows executable build. |
---|
[46bf3b1] | 52 | |
---|
| 53 | # Fitting perspective |
---|
| 54 | import perspectives.fitting as module |
---|
| 55 | fitting_plug = module.Plugin() |
---|
| 56 | self.gui.add_perspective(fitting_plug) |
---|
| 57 | |
---|
[1c8015f] | 58 | # P(r) perspective |
---|
| 59 | try: |
---|
| 60 | import sans.perspectives.pr as module |
---|
[4d6cce0] | 61 | pr_plug = module.Plugin(standalone=False) |
---|
| 62 | self.gui.add_perspective(pr_plug) |
---|
[1c8015f] | 63 | except: |
---|
[75fbd17] | 64 | raise |
---|
| 65 | #logging.error("SansView: could not find P(r) plug-in module") |
---|
| 66 | #logging.error(sys.exc_value) |
---|
[4d6cce0] | 67 | |
---|
| 68 | #Invariant perspective |
---|
| 69 | try: |
---|
| 70 | import sans.perspectives.invariant as module |
---|
| 71 | invariant_plug = module.Plugin(standalone=False) |
---|
| 72 | self.gui.add_perspective(invariant_plug) |
---|
| 73 | except: |
---|
[73c200a] | 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) |
---|
[73c200a] | 85 | |
---|
[e2da832] | 86 | # Add welcome page |
---|
| 87 | self.gui.set_welcome_panel(WelcomePanel) |
---|
| 88 | |
---|
[d89f09b] | 89 | # Build the GUI |
---|
| 90 | self.gui.build_gui() |
---|
| 91 | |
---|
| 92 | # Start the main loop |
---|
| 93 | self.gui.MainLoop() |
---|
[c363d74] | 94 | |
---|
[d89f09b] | 95 | |
---|
| 96 | if __name__ == "__main__": |
---|
| 97 | sansview = SansView() |
---|