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