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 2008, 2009, University of Tennessee |
---|
9 | """ |
---|
10 | |
---|
11 | import wx |
---|
12 | import sys |
---|
13 | |
---|
14 | from sans.guiframe.panel_base import PanelBase |
---|
15 | from sans.calculator.kiessig_calculator import KiessigThicknessCalculator |
---|
16 | from calculator_widgets import OutputTextCtrl |
---|
17 | from calculator_widgets import InputTextCtrl |
---|
18 | |
---|
19 | _BOX_WIDTH = 77 |
---|
20 | #Slit length panel size |
---|
21 | if sys.platform.count("win32") > 0: |
---|
22 | PANEL_WIDTH = 500 |
---|
23 | PANEL_HEIGHT = 210 |
---|
24 | FONT_VARIANT = 0 |
---|
25 | else: |
---|
26 | PANEL_WIDTH = 560 |
---|
27 | PANEL_HEIGHT = 230 |
---|
28 | FONT_VARIANT = 1 |
---|
29 | |
---|
30 | class KiessigThicknessCalculatorPanel(wx.Panel, PanelBase): |
---|
31 | """ |
---|
32 | Provides the Kiessig thickness calculator GUI. |
---|
33 | """ |
---|
34 | ## Internal nickname for the window, used by the AUI manager |
---|
35 | window_name = "Kiessig Thickness Calculator" |
---|
36 | ## Name to appear on the window title bar |
---|
37 | window_caption = "Kiessig Thickness Calculator" |
---|
38 | ## Flag to tell the AUI manager to put this panel in the center pane |
---|
39 | CENTER_PANE = True |
---|
40 | |
---|
41 | def __init__(self, parent, *args, **kwds): |
---|
42 | wx.Panel.__init__(self, parent, *args, **kwds) |
---|
43 | PanelBase.__init__(self) |
---|
44 | #Font size |
---|
45 | self.SetWindowVariant(variant=FONT_VARIANT) |
---|
46 | # Object that receive status event |
---|
47 | self.parent = parent |
---|
48 | self.kiessig = KiessigThicknessCalculator() |
---|
49 | #layout attribute |
---|
50 | self.hint_sizer = None |
---|
51 | self._do_layout() |
---|
52 | |
---|
53 | def _define_structure(self): |
---|
54 | """ |
---|
55 | Define the main sizers building to build this application. |
---|
56 | """ |
---|
57 | self.main_sizer = wx.BoxSizer(wx.VERTICAL) |
---|
58 | self.box_source = wx.StaticBox(self, -1, |
---|
59 | str("Kiessig Thickness Calculator")) |
---|
60 | self.boxsizer_source = wx.StaticBoxSizer(self.box_source, |
---|
61 | wx.VERTICAL) |
---|
62 | self.dq_name_sizer = wx.BoxSizer(wx.HORIZONTAL) |
---|
63 | self.thickness_size_sizer = wx.BoxSizer(wx.HORIZONTAL) |
---|
64 | self.hint_sizer = wx.BoxSizer(wx.HORIZONTAL) |
---|
65 | self.button_sizer = wx.BoxSizer(wx.HORIZONTAL) |
---|
66 | |
---|
67 | def _layout_dq_name(self): |
---|
68 | """ |
---|
69 | Fill the sizer containing dq name |
---|
70 | """ |
---|
71 | # get the default dq |
---|
72 | dq_value = str(self.kiessig.get_deltaq()) |
---|
73 | dq_unit_txt = wx.StaticText(self, -1, '[1/A]') |
---|
74 | dq_name_txt = wx.StaticText(self, -1, |
---|
75 | 'Kiessig Fringe Width (Delta Q): ') |
---|
76 | self.dq_name_tcl = InputTextCtrl(self, -1, |
---|
77 | size=(_BOX_WIDTH,-1)) |
---|
78 | dq_hint = "Type the Kiessig Fringe Width (Delta Q)" |
---|
79 | self.dq_name_tcl.SetValue(dq_value) |
---|
80 | self.dq_name_tcl.SetToolTipString(dq_hint) |
---|
81 | #control that triggers importing data |
---|
82 | id = wx.NewId() |
---|
83 | self.compute_button = wx.Button(self, id, "Compute") |
---|
84 | hint_on_compute = "Compute the diameter/thickness in the real space." |
---|
85 | self.compute_button.SetToolTipString(hint_on_compute) |
---|
86 | self.Bind(wx.EVT_BUTTON, self.on_compute, id=id) |
---|
87 | self.dq_name_sizer.AddMany([(dq_name_txt, 0, wx.LEFT, 15), |
---|
88 | (self.dq_name_tcl, 0, wx.LEFT, 15), |
---|
89 | (dq_unit_txt,0, wx.LEFT, 10), |
---|
90 | (self.compute_button, 0, wx.LEFT, 30)]) |
---|
91 | def _layout_thickness_size(self): |
---|
92 | """ |
---|
93 | Fill the sizer containing thickness information |
---|
94 | """ |
---|
95 | thick_unit = '['+self.kiessig.get_thickness_unit() +']' |
---|
96 | thickness_size_txt = wx.StaticText(self, -1, |
---|
97 | 'Thickness (or Diameter): ') |
---|
98 | self.thickness_size_tcl = OutputTextCtrl(self, -1, |
---|
99 | size=(_BOX_WIDTH,-1)) |
---|
100 | thickness_size_hint = " Estimated Size in Real Space" |
---|
101 | self.thickness_size_tcl.SetToolTipString(thickness_size_hint) |
---|
102 | thickness_size_unit_txt = wx.StaticText(self, -1, thick_unit) |
---|
103 | |
---|
104 | self.thickness_size_sizer.AddMany([(thickness_size_txt, 0, wx.LEFT, 15), |
---|
105 | (self.thickness_size_tcl, 0, wx.LEFT, 15), |
---|
106 | (thickness_size_unit_txt, 0, wx.LEFT, 10)]) |
---|
107 | |
---|
108 | def _layout_hint(self): |
---|
109 | """ |
---|
110 | Fill the sizer containing hint |
---|
111 | """ |
---|
112 | hint_msg = "This tool is to approximately estimate " |
---|
113 | hint_msg += "the thickness of a layer" |
---|
114 | hint_msg += " or the diameter of particles\n " |
---|
115 | hint_msg += "from the Kiessig fringe width in SANS/NR data." |
---|
116 | hint_msg += "" |
---|
117 | self.hint_txt = wx.StaticText(self, -1, hint_msg) |
---|
118 | self.hint_sizer.AddMany([(self.hint_txt, 0, wx.LEFT, 15)]) |
---|
119 | |
---|
120 | def _layout_button(self): |
---|
121 | """ |
---|
122 | Do the layout for the button widgets |
---|
123 | """ |
---|
124 | self.bt_close = wx.Button(self, wx.ID_CANCEL,'Close') |
---|
125 | self.bt_close.Bind(wx.EVT_BUTTON, self.on_close) |
---|
126 | self.bt_close.SetToolTipString("Close this window.") |
---|
127 | self.button_sizer.AddMany([(self.bt_close, 0, wx.LEFT, 390)]) |
---|
128 | |
---|
129 | def _do_layout(self): |
---|
130 | """ |
---|
131 | Draw window content |
---|
132 | """ |
---|
133 | self._define_structure() |
---|
134 | self._layout_dq_name() |
---|
135 | self._layout_thickness_size() |
---|
136 | self._layout_hint() |
---|
137 | self._layout_button() |
---|
138 | self.boxsizer_source.AddMany([(self.dq_name_sizer, 0, |
---|
139 | wx.EXPAND|wx.TOP|wx.BOTTOM, 5), |
---|
140 | (self.thickness_size_sizer, 0, |
---|
141 | wx.EXPAND|wx.TOP|wx.BOTTOM, 5), |
---|
142 | (self.hint_sizer, 0, |
---|
143 | wx.EXPAND|wx.TOP|wx.BOTTOM, 5)]) |
---|
144 | self.main_sizer.AddMany([(self.boxsizer_source, 0, wx.ALL, 10), |
---|
145 | (self.button_sizer, 0, |
---|
146 | wx.EXPAND|wx.TOP|wx.BOTTOM, 5)]) |
---|
147 | self.SetSizer(self.main_sizer) |
---|
148 | self.SetAutoLayout(True) |
---|
149 | |
---|
150 | def on_close(self, event): |
---|
151 | """ |
---|
152 | close the window containing this panel |
---|
153 | """ |
---|
154 | self.parent.Close() |
---|
155 | if event is not None: |
---|
156 | event.Skip() |
---|
157 | |
---|
158 | def on_compute(self, event): |
---|
159 | """ |
---|
160 | Execute the computation of thickness |
---|
161 | """ |
---|
162 | # skip for another event |
---|
163 | if event != None: |
---|
164 | event.Skip() |
---|
165 | dq = self.dq_name_tcl.GetValue() |
---|
166 | self.kiessig.set_deltaq(dq) |
---|
167 | # calculate the thickness |
---|
168 | output = self.kiessig.compute_thickness() |
---|
169 | thickness = self.format_number(output) |
---|
170 | # set tcl |
---|
171 | self.thickness_size_tcl.SetValue(str(thickness)) |
---|
172 | |
---|
173 | def format_number(self, value=None): |
---|
174 | """ |
---|
175 | Return a float in a standardized, human-readable formatted string |
---|
176 | """ |
---|
177 | try: |
---|
178 | value = float(value) |
---|
179 | except: |
---|
180 | output = None |
---|
181 | return output |
---|
182 | |
---|
183 | output = "%-7.4g" % value |
---|
184 | return output.lstrip().rstrip() |
---|
185 | |
---|
186 | def _onparamEnter(self, event = None): |
---|
187 | """ |
---|
188 | On Text_enter_callback, perform compute |
---|
189 | """ |
---|
190 | self.on_compute(event) |
---|
191 | |
---|
192 | class KiessigWindow(wx.Frame): |
---|
193 | def __init__(self, parent=None, title="Kiessig Thickness Calculator", |
---|
194 | size=(PANEL_WIDTH,PANEL_HEIGHT), *args, **kwds): |
---|
195 | kwds['title'] = title |
---|
196 | kwds['size'] = size |
---|
197 | wx.Frame.__init__(self, parent, *args, **kwds) |
---|
198 | self.parent = parent |
---|
199 | self.panel = KiessigThicknessCalculatorPanel(parent=self) |
---|
200 | self.Centre() |
---|
201 | self.Show(True) |
---|
202 | |
---|
203 | if __name__ == "__main__": |
---|
204 | app = wx.PySimpleApp() |
---|
205 | frame = KiessigWindow() |
---|
206 | frame.Show(True) |
---|
207 | app.MainLoop() |
---|