source: sasview/prview/perspectives/pr/inversion_panel.py @ 3cd5806

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 3cd5806 was 3f0351c6, checked in by Gervaise Alina <gervyh@…>, 14 years ago

bind prview button with guiframe toolbar

  • Property mode set to 100644
File size: 40.0 KB
RevLine 
[f3d51f6]1#!/usr/bin/env python
2
3# version
4__id__ = "$Id: aboutdialog.py 1193 2007-05-03 17:29:59Z dmitriy $"
5__revision__ = "$Revision: 1193 $"
6
7import wx
[5d98370]8import os
[ceaf16e]9import sys
10import logging
[9ff861b]11from wx.lib.scrolledpanel import ScrolledPanel
[75df58b]12from sans.guiframe.events import StatusEvent   
13from sans.guiframe.panel_base import PanelBase
[5d98370]14from inversion_state import InversionState
[3e41f43]15from pr_widgets import PrTextCtrl
16from pr_widgets import DataFileTextCtrl
17from pr_widgets import OutputTextCtrl
[f3d51f6]18
19
20
[75df58b]21class InversionControl(ScrolledPanel, PanelBase):
[7116b6e0]22    """
23    """
[f3d51f6]24    window_name = 'pr_control'
25    window_caption = "P(r) control panel"
26    CENTER_PANE = True
27   
28    # Figure of merit parameters [default]
[dfb58f8]29   
30    ## Oscillation parameters (sin function = 1.1)
[f3d51f6]31    oscillation_max = 1.5
32   
[3e41f43]33    def __init__(self, parent, id=-1, plots=None, 
34                 standalone=False, **kwargs):
[7116b6e0]35        """
36        """
[3e41f43]37        ScrolledPanel.__init__(self, parent, id=id, **kwargs)
[3f0351c6]38        PanelBase.__init__(self, parent)
[9ff861b]39        self.SetupScrolling()
[f3d51f6]40       
41        self.plots = plots
42        self.radio_buttons = {}
[c405c69]43        self.parent = parent
[f3d51f6]44       
45        ## Data file TextCtrl
[a4bd2ac]46        self.data_file  = None
47        self.plot_data  = None
48        self.nfunc_ctl  = None
49        self.alpha_ctl  = None
50        self.dmax_ctl   = None
51        self.time_ctl   = None
52        self.chi2_ctl   = None
53        self.osc_ctl    = None
[f3d51f6]54        self.file_radio = None
55        self.plot_radio = None
[634f1cf]56        self.label_sugg = None
[a4bd2ac]57        self.qmin_ctl   = None
58        self.qmax_ctl   = None
[5d98370]59        self.swidth_ctl = None
60        self.sheight_ctl = None
[a4bd2ac]61       
62        self.rg_ctl     = None
63        self.iq0_ctl    = None
64        self.bck_chk    = None
65        self.bck_ctl    = None
[f3d51f6]66       
[dfb58f8]67        # TextCtrl for fraction of positive P(r)
68        self.pos_ctl = None
69       
70        # TextCtrl for fraction of 1 sigma positive P(r)
71        self.pos_err_ctl = None 
72       
[f3d51f6]73        ## Estimates
74        self.alpha_estimate_ctl = None
[35adaf6]75        self.nterms_estimate_ctl = None
[a00ee4c]76        ## D_max distance explorator
77        self.distance_explorator_ctl = None
[f3d51f6]78        ## Data manager
[6d3d5ff]79        self._manager   = None
[aa4b8379]80        ## Standalone flage
81        self.standalone = standalone
[5d98370]82        ## Default file location for save
83        self._default_save_location = os.getcwd()
[0ccd214]84        # Default width
85        self._default_width = 350
[f3d51f6]86        self._do_layout()
87       
88    def __setattr__(self, name, value):
89        """
[7116b6e0]90        Allow direct hooks to text boxes
[f3d51f6]91        """
[3e41f43]92        if name == 'nfunc':
[5d98370]93            self.nfunc_ctl.SetValue(str(int(value)))
[3e41f43]94        elif name == 'd_max':
[f3d51f6]95            self.dmax_ctl.SetValue(str(value))
[3e41f43]96        elif name == 'alpha':
[f3d51f6]97            self.alpha_ctl.SetValue(str(value))
[3e41f43]98        elif name == 'chi2':
[a4bd2ac]99            self.chi2_ctl.SetValue("%-5.2g" % value)
[3e41f43]100        elif name == 'bck':
[a4bd2ac]101            self.bck_ctl.SetValue("%-5.2g" % value)
[3e41f43]102        elif name == 'q_min':
[a4bd2ac]103            self.qmin_ctl.SetValue("%-5.2g" % value)
[3e41f43]104        elif name == 'q_max':
[a4bd2ac]105            self.qmax_ctl.SetValue("%-5.2g" % value)
[3e41f43]106        elif name == 'elapsed':
[f3d51f6]107            self.time_ctl.SetValue("%-5.2g" % value)
[3e41f43]108        elif name ==' rg':
[a4bd2ac]109            self.rg_ctl.SetValue("%-5.2g" % value)
[3e41f43]110        elif name == 'iq0':
[a4bd2ac]111            self.iq0_ctl.SetValue("%-5.2g" % value)
[3e41f43]112        elif name == 'oscillation':
[f3d51f6]113            self.osc_ctl.SetValue("%-5.2g" % value)
[3e41f43]114        elif name == 'slit_width':
[5d98370]115            self.swidth_ctl.SetValue("%-5.2g" % value)
[3e41f43]116        elif name == 'slit_height':
[5d98370]117            self.sheight_ctl.SetValue("%-5.2g" % value)
[3e41f43]118        elif name == 'positive':
[dfb58f8]119            self.pos_ctl.SetValue("%-5.2g" % value)
[3e41f43]120        elif name == 'pos_err':
[dfb58f8]121            self.pos_err_ctl.SetValue("%-5.2g" % value)
[3e41f43]122        elif name == 'alpha_estimate':
[634f1cf]123            self.alpha_estimate_ctl.SetToolTipString("Click to accept value.")
124            self.alpha_estimate_ctl.Enable(True)
125            self.alpha_estimate_ctl.SetLabel("%-3.1g" % value)
126            #self.alpha_estimate_ctl.Show()
127            #self.label_sugg.Show()
[3e41f43]128        elif name == 'nterms_estimate':
[35adaf6]129            self.nterms_estimate_ctl.SetToolTipString("Click to accept value.")
130            self.nterms_estimate_ctl.Enable(True)
131            self.nterms_estimate_ctl.SetLabel("%-g" % value)
[3e41f43]132        elif name == 'plotname':
[0d88a09]133            self.plot_data.SetValue(str(value))
134            self._on_pars_changed(None)
[3e41f43]135        elif name == 'datafile':
[0d88a09]136            self.plot_data.SetValue(str(value))
137            self._on_pars_changed(None)
[f3d51f6]138        else:
139            wx.Panel.__setattr__(self, name, value)
140       
141    def __getattr__(self, name):
142        """
[7116b6e0]143        Allow direct hooks to text boxes
[f3d51f6]144        """
[3e41f43]145        if name == 'nfunc':
[3fd1ebc]146            try:
147                return int(self.nfunc_ctl.GetValue())
148            except:
149                return -1
[3e41f43]150        elif name == 'd_max':
[3fd1ebc]151            try:
152                return self.dmax_ctl.GetValue()
153            except:
154                return -1.0
[3e41f43]155        elif name == 'alpha':
[3fd1ebc]156            try:
157                return self.alpha_ctl.GetValue()
158            except:
159                return -1.0
[3e41f43]160        elif name == 'chi2':
[3fd1ebc]161            try:
162                return float(self.chi2_ctl.GetValue())
163            except:
[5d98370]164                return None
[3e41f43]165        elif name == 'bck':
[a4bd2ac]166            try:
167                return float(self.bck_ctl.GetValue())
168            except:
[5d98370]169                return None
[3e41f43]170        elif name == 'q_min':
[3fd1ebc]171            try:
172                return float(self.qmin_ctl.GetValue())
173            except:
174                return 0.0
[634f1cf]175        elif name=='q_max':
[3fd1ebc]176            try:
177                return float(self.qmax_ctl.GetValue())
178            except:
179                return 0.0
[3e41f43]180        elif name == 'elapsed':
[3fd1ebc]181            try:
182                return float(self.time_ctl.GetValue())
183            except:
[5d98370]184                return None
[3e41f43]185        elif name == 'rg':
[a4bd2ac]186            try:
187                return float(self.rg_ctl.GetValue())
188            except:
[5d98370]189                return None
[a4bd2ac]190        elif name=='iq0':
191            try:
192                return float(self.iq0_ctl.GetValue())
193            except:
[5d98370]194                return None
[3e41f43]195        elif name == 'oscillation':
[3fd1ebc]196            try:
197                return float(self.osc_ctl.GetValue())
198            except:
[5d98370]199                return None
[3e41f43]200        elif name == 'slit_width':
[5d98370]201            try:
202                return float(self.swidth_ctl.GetValue())
203            except:
204                return None
205        elif name=='slit_height':
206            try:
207                return float(self.sheight_ctl.GetValue())
208            except:
209                return None
[3e41f43]210        elif name == 'pos':
[3fd1ebc]211            try:
212                return float(self.pos_ctl.GetValue())
213            except:
[5d98370]214                return None
[3e41f43]215        elif name == 'pos_err':
[5d98370]216            try:
217                return float(self.pos_err_ctl.GetValue())
218            except:
219                return None
[3e41f43]220        elif name == 'alpha_estimate':
[5d98370]221            try:
222                return float(self.alpha_estimate_ctl.GetLabel())
223            except:
224                return None
[3e41f43]225        elif name == 'nterms_estimate':
[5d98370]226            try:
227                return int(self.nterms_estimate_ctl.GetLabel())
228            except:
229                return None
[3e41f43]230        elif name == 'plotname':
[0d88a09]231            return self.plot_data.GetValue()
[3e41f43]232        elif name == 'datafile':
[0d88a09]233            return self.plot_data.GetValue()
[f3d51f6]234        else:
[a00ee4c]235            return wx.Panel.__getattribute__(self, name)
[f3d51f6]236       
[3f0351c6]237    def on_save(self, evt=None):
[5d98370]238        """
[7116b6e0]239        Method used to create a memento of the current state
[5d98370]240           
[7116b6e0]241        :return: state object
[5d98370]242        """
243        # Ask the user the location of the file to write to.
244        path = None
[3e41f43]245        dlg = wx.FileDialog(self, "Choose a file",
246                            self._default_save_location, "", "*.prv", wx.SAVE)
[5d98370]247        if dlg.ShowModal() == wx.ID_OK:
248            path = dlg.GetPath()
249            self._default_save_location = os.path.dirname(path)
[0d88a09]250        else:
251            return None
252       
[5d98370]253        dlg.Destroy()
[b35d3d1]254       
255        state = self.get_state()
256           
[6d3d5ff]257        self._manager.save_data(filepath=path, prstate=state)
[b35d3d1]258       
259        return state
260   
[6d3d5ff]261    def get_data(self):
262        """
263        """
264        return self._manager.get_data()
265   
[b35d3d1]266    def get_state(self):
267        """
268        Get the current state
269       
270        : return: state object
271        """
[5d98370]272        # Construct the state object   
273        state = InversionState()
274       
275        # Read the panel's parameters
276        flag, alpha, dmax, nfunc, qmin, \
277        qmax, height, width = self._read_pars()
278       
279        state.nfunc = nfunc
280        state.d_max = dmax
281        state.alpha = alpha
282        state.qmin  = qmin
283        state.qmax  = qmax
284        state.width = width
285        state.height = height
286       
287        # Data file
[0d88a09]288        state.file = self.plot_data.GetValue()
[5d98370]289       
290        # Background evaluation checkbox
291        state.estimate_bck = self.bck_chk.IsChecked()
292       
293        # Estimates
294        state.nterms_estimate = self.nterms_estimate
295        state.alpha_estimate = self.alpha_estimate
296       
297        # Read the output values
298        state.chi2    = self.chi2
299        state.elapsed = self.elapsed
300        state.osc     = self.oscillation
301        state.pos     = self.pos
302        state.pos_err = self.pos_err
303        state.rg      = self.rg
304        state.iq0     = self.iq0
305        state.bck     = self.bck
[fde249c]306       
[5d98370]307        return state
308   
309    def set_state(self, state):
310        """
[7116b6e0]311        Set the state of the panel and inversion problem to
312        the state passed as a parameter.
313        Execute the inversion immediately after filling the
314        controls.
315       
316        :param state: InversionState object
[5d98370]317        """
[fde249c]318        if state.nfunc is not None:
319            self.nfunc = state.nfunc
320        if state.d_max is not None:
321            self.d_max = state.d_max
322        if state.alpha is not None:
323            self.alpha = state.alpha
324        if state.qmin is not None:
325            self.q_min  = state.qmin
326        if state.qmax is not None:
327            self.q_max  = state.qmax
328        if state.width is not None:
329            self.slit_width = state.width
330        if state.height is not None:
331            self.slit_height = state.height
[5d98370]332       
333        # Data file
[0d88a09]334        self.plot_data.SetValue(str(state.file))
[5d98370]335   
336        # Background evaluation checkbox
337        self.bck_chk.SetValue(state.estimate_bck)
338       
339        # Estimates
[fde249c]340        if state.nterms_estimate is not None:
341            self.nterms_estimate = state.nterms_estimate
342        if state.alpha_estimate is not None: 
343            self.alpha_estimate = state.alpha_estimate
[5d98370]344   
345       
346        # Read the output values
[fde249c]347        if state.chi2 is not None:
348            self.chi2    = state.chi2
349        if state.elapsed is not None:
350            self.elapsed = state.elapsed
351        if state.osc is not None:
352            self.oscillation = state.osc
353        if state.pos is not None:
354            self.positive = state.pos
355        if state.pos_err is not None:
356            self.pos_err = state.pos_err
357        if state.rg is not None:
358            self.rg      = state.rg
359        if state.iq0 is not None:
360            self.iq0     = state.iq0
361        if state.bck is not None:
362            self.bck     = state.bck
[5d98370]363
[0d88a09]364        # Perform inversion
365        if self.standalone == False:
[fde249c]366            self._on_invert(None)   
[5d98370]367       
[f3d51f6]368    def set_manager(self, manager):
[6d3d5ff]369        self._manager = manager
[f3d51f6]370       
371    def _do_layout(self):
[4318af7f]372        vbox = wx.GridBagSizer(0,0)
373        iy_vb = 0
[f3d51f6]374
375        # ----- I(q) data -----
[aa4b8379]376        databox = wx.StaticBox(self, -1, "I(q) data source")
[f3d51f6]377       
378        boxsizer1 = wx.StaticBoxSizer(databox, wx.VERTICAL)
[3e41f43]379        boxsizer1.SetMinSize((self._default_width, 50))
380        pars_sizer = wx.GridBagSizer(5, 5)
[0d21ac1]381
[f3d51f6]382        iy = 0
[d2ee6f6]383        self.file_radio = wx.StaticText(self, -1, "Data:")
[3e41f43]384        pars_sizer.Add(self.file_radio, (iy, 0), (1, 1),
385                       wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
[f3d51f6]386       
[9ff861b]387        self.plot_data = DataFileTextCtrl(self, -1, size=(260,20))
388       
[3e41f43]389        pars_sizer.Add(self.plot_data, (iy, 1), (1, 1),
390                       wx.EXPAND|wx.LEFT|wx.RIGHT|wx.ADJUST_MINSIZE, 15)
[f3d51f6]391       
[a4bd2ac]392        self.bck_chk = wx.CheckBox(self, -1, "Estimate background level")
[3e41f43]393        hint_msg = "Check box to let the fit estimate "
394        hint_msg += "the constant background level."
395        self.bck_chk.SetToolTipString(hint_msg)
[a4bd2ac]396        self.bck_chk.Bind(wx.EVT_CHECKBOX, self._on_pars_changed)
397        iy += 1
[3e41f43]398        pars_sizer.Add(self.bck_chk, (iy, 0), (1, 2),
399                       wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
[a4bd2ac]400        boxsizer1.Add(pars_sizer, 0, wx.EXPAND) 
[3e41f43]401        vbox.Add(boxsizer1, (iy_vb, 0), (1, 1),
402                 wx.LEFT|wx.RIGHT|wx.EXPAND|wx.ADJUST_MINSIZE|wx.TOP, 5)
[a4bd2ac]403       
404        # ----- Add slit parameters -----
[2a92852]405        if True:
[a4bd2ac]406            sbox = wx.StaticBox(self, -1, "Slit parameters")
407            sboxsizer = wx.StaticBoxSizer(sbox, wx.VERTICAL)
[3e41f43]408            sboxsizer.SetMinSize((self._default_width, 20))
[a4bd2ac]409           
[3e41f43]410            sizer_slit = wx.GridBagSizer(5, 5)
[a4bd2ac]411   
[3e41f43]412            label_sheight = wx.StaticText(self, -1, "Height", size=(40, 20))
413            label_swidth = wx.StaticText(self, -1, "Width", size=(40, 20))
[a4bd2ac]414            #label_sunits1 = wx.StaticText(self, -1, "[A^(-1)]")
[4318af7f]415            label_sunits2 = wx.StaticText(self, -1, "[A^(-1)]", size=(55,20))
[3e41f43]416            self.sheight_ctl = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
417                                          size=(60,20))
418            self.swidth_ctl = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
419                                         size=(60,20))
420            hint_msg = "Enter slit height in units of Q or leave blank."
421            self.sheight_ctl.SetToolTipString(hint_msg)
422            hint_msg = "Enter slit width in units of Q or leave blank."
423            self.swidth_ctl.SetToolTipString(hint_msg)
[2a92852]424            #self.sheight_ctl.Bind(wx.EVT_TEXT, self._on_pars_changed)
425            #self.swidth_ctl.Bind(wx.EVT_TEXT,  self._on_pars_changed)
[a4bd2ac]426           
427            iy = 0
[3e41f43]428            sizer_slit.Add(label_sheight,    (iy, 0), (1, 1),
429                           wx.LEFT|wx.EXPAND, 5)
430            sizer_slit.Add(self.sheight_ctl, (iy, 1), (1, 1),
431                           wx.LEFT|wx.EXPAND, 5)
432   
433            sizer_slit.Add(label_swidth,     (iy, 2), (1, 1),
434                           wx.LEFT|wx.EXPAND, 5)
435            sizer_slit.Add(self.swidth_ctl,  (iy, 3), (1, 1),
436                           wx.LEFT|wx.EXPAND, 5)
437            sizer_slit.Add(label_sunits2,    (iy, 4), (1, 1),
438                           wx.LEFT|wx.EXPAND, 5)
[a4bd2ac]439           
440            sboxsizer.Add(sizer_slit, wx.TOP, 15)
[4318af7f]441            iy_vb += 1
[3e41f43]442            vbox.Add(sboxsizer, (iy_vb, 0), (1, 1),
443                     wx.LEFT|wx.RIGHT|wx.EXPAND|wx.ADJUST_MINSIZE, 5)
[a4bd2ac]444       
[357b79b]445       
446        # ----- Q range -----
447        qbox = wx.StaticBox(self, -1, "Q range")
448        qboxsizer = wx.StaticBoxSizer(qbox, wx.VERTICAL)
[3e41f43]449        qboxsizer.SetMinSize((self._default_width, 20))
[357b79b]450       
[3e41f43]451        sizer_q = wx.GridBagSizer(5, 5)
[357b79b]452
[3e41f43]453        label_qmin = wx.StaticText(self, -1, "Q min", size=(40, 20))
454        label_qmax = wx.StaticText(self, -1, "Q max", size=(40, 20))
[357b79b]455        #label_qunits1 = wx.StaticText(self, -1, "[A^(-1)]")
[3e41f43]456        label_qunits2 = wx.StaticText(self, -1, "[A^(-1)]", size=(55, 20))
457        self.qmin_ctl = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
458                                   size=(60,20))
459        self.qmax_ctl = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
460                                   size=(60,20))
461        hint_msg = "Select a lower bound for Q or leave blank."
462        self.qmin_ctl.SetToolTipString(hint_msg)
463        hint_msg = "Select an upper bound for Q or leave blank."
464        self.qmax_ctl.SetToolTipString(hint_msg)
[357b79b]465        self.qmin_ctl.Bind(wx.EVT_TEXT, self._on_pars_changed)
466        self.qmax_ctl.Bind(wx.EVT_TEXT, self._on_pars_changed)
467       
468        iy = 0
[3e41f43]469        sizer_q.Add(label_qmin,    (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 5)
470        sizer_q.Add(self.qmin_ctl, (iy, 1), (1, 1), wx.LEFT|wx.EXPAND, 5)
[357b79b]471        #sizer_q.Add(label_qunits1, (iy,2), (1,1), wx.LEFT|wx.EXPAND, 15)
[3e41f43]472        sizer_q.Add(label_qmax,    (iy, 2), (1, 1), wx.LEFT|wx.EXPAND, 5)
473        sizer_q.Add(self.qmax_ctl, (iy, 3), (1, 1), wx.LEFT|wx.EXPAND, 5)
474        sizer_q.Add(label_qunits2, (iy, 4), (1, 1), wx.LEFT|wx.EXPAND, 5)
[357b79b]475        qboxsizer.Add(sizer_q, wx.TOP, 15)
[4318af7f]476
477        iy_vb += 1
[3e41f43]478        vbox.Add(qboxsizer, (iy_vb,0), (1,1),
479                 wx.LEFT|wx.RIGHT|wx.EXPAND|wx.ADJUST_MINSIZE, 5)
480   
[f3d51f6]481        # ----- Parameters -----
482        parsbox = wx.StaticBox(self, -1, "Parameters")
483        boxsizer2 = wx.StaticBoxSizer(parsbox, wx.VERTICAL)
[0ccd214]484        boxsizer2.SetMinSize((self._default_width,50))
[f3d51f6]485       
[3e41f43]486        explanation  = "P(r) is found by fitting a set of base functions"
487        explanation += " to I(Q). The minimization involves"
488        explanation += " a regularization term to ensure a smooth P(r)."
489        explanation += " The regularization constant gives the size of that " 
490        explanation += "term. The suggested value is the value above which the"
491        explanation += " output P(r) will have only one peak."
[0ccd214]492        label_explain = wx.StaticText(self, -1, explanation, size=(280,120))
[32dffae4]493        boxsizer2.Add(label_explain,  wx.LEFT|wx.BOTTOM, 5)
494       
495       
496       
[f3d51f6]497        label_nfunc = wx.StaticText(self, -1, "Number of terms")
[3e41f43]498        label_nfunc.SetMinSize((120, 20))
[f3d51f6]499        label_alpha = wx.StaticText(self, -1, "Regularization constant")
500        label_dmax  = wx.StaticText(self, -1, "Max distance [A]")
[634f1cf]501        self.label_sugg  = wx.StaticText(self, -1, "Suggested value")
502        #self.label_sugg.Hide()
[f3d51f6]503       
[3e41f43]504        self.nfunc_ctl = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
505                                    size=(60,20))
[32dffae4]506        self.nfunc_ctl.SetToolTipString("Number of terms in the expansion.")
[3e41f43]507        self.alpha_ctl = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
508                                    size=(60,20))
509        hint_msg = "Control parameter for the size of the regularization term."
510        self.alpha_ctl.SetToolTipString(hint_msg)
511        self.dmax_ctl  = PrTextCtrl(self, -1, style=wx.TE_PROCESS_ENTER,
512                                    size=(60,20))
513        hint_msg = "Maximum distance between any two points in the system."
514        self.dmax_ctl.SetToolTipString(hint_msg)
[634f1cf]515        id = wx.NewId()
516        self.alpha_estimate_ctl  = wx.Button(self, id, "")
517        #self.alpha_estimate_ctl.Hide()
518        self.Bind(wx.EVT_BUTTON, self._on_accept_alpha, id = id)   
[f3d51f6]519        self.alpha_estimate_ctl.Enable(False)
[634f1cf]520        #self.alpha_estimate_ctl.SetBackgroundColour('#ffdf85')
521        #self.alpha_estimate_ctl.SetBackgroundColour(self.GetBackgroundColour())
522        self.alpha_estimate_ctl.SetToolTipString("Waiting for estimate...")
[f3d51f6]523       
[35adaf6]524        id = wx.NewId()
525        self.nterms_estimate_ctl  = wx.Button(self, id, "")
526        #self.nterms_estimate_ctl.Hide()
527        self.Bind(wx.EVT_BUTTON, self._on_accept_nterms, id = id)   
528        self.nterms_estimate_ctl.Enable(False)
[3e41f43]529     
[35adaf6]530        self.nterms_estimate_ctl.SetToolTipString("Waiting for estimate...")
531       
[d6113849]532        self.nfunc_ctl.Bind(wx.EVT_TEXT, self._read_pars)
[a4bd2ac]533        self.alpha_ctl.Bind(wx.EVT_TEXT, self._read_pars)
534        self.dmax_ctl.Bind(wx.EVT_TEXT, self._on_pars_changed)
535       
[a00ee4c]536        # Distance explorator
537        id = wx.NewId()
538        self.distance_explorator_ctl = wx.Button(self, id, "Explore")
539        self.Bind(wx.EVT_BUTTON, self._on_explore, id = id)           
[a4bd2ac]540       
541       
[f3d51f6]542        sizer_params = wx.GridBagSizer(5,5)
543
544        iy = 0
[3e41f43]545        sizer_params.Add(self.label_sugg, (iy, 2), (1, 1), wx.LEFT, 15)
[f3d51f6]546        iy += 1
[3e41f43]547        sizer_params.Add(label_nfunc,      (iy, 0), (1, 1), wx.LEFT, 15)
548        sizer_params.Add(self.nfunc_ctl,   (iy, 1), (1, 1), wx.RIGHT, 0)
549        sizer_params.Add(self.nterms_estimate_ctl, (iy, 2), (1, 1), wx.LEFT, 15)
[f3d51f6]550        iy += 1
[3e41f43]551        sizer_params.Add(label_alpha,      (iy, 0), (1, 1), wx.LEFT, 15)
552        sizer_params.Add(self.alpha_ctl,   (iy, 1), (1, 1), wx.RIGHT, 0)
553        sizer_params.Add(self.alpha_estimate_ctl, (iy, 2), (1, 1), wx.LEFT, 15)
[f3d51f6]554        iy += 1
[3e41f43]555        sizer_params.Add(label_dmax, (iy, 0), (1, 1), wx.LEFT, 15)
556        sizer_params.Add(self.dmax_ctl,   (iy, 1), (1, 1), wx.RIGHT, 0)
557        sizer_params.Add(self.distance_explorator_ctl, (iy, 2),
558                         (1, 1), wx.LEFT, 15)
[f3d51f6]559
560        boxsizer2.Add(sizer_params, 0)
[634f1cf]561       
[4318af7f]562        iy_vb += 1
[3e41f43]563        vbox.Add(boxsizer2, (iy_vb, 0), (1, 1),
564                 wx.LEFT|wx.RIGHT|wx.EXPAND|wx.ADJUST_MINSIZE, 5)
[f3d51f6]565
[634f1cf]566
[f3d51f6]567        # ----- Results -----
568        resbox = wx.StaticBox(self, -1, "Outputs")
569        ressizer = wx.StaticBoxSizer(resbox, wx.VERTICAL)
[3e41f43]570        ressizer.SetMinSize((self._default_width, 50))
[f3d51f6]571       
[a4bd2ac]572        label_rg       = wx.StaticText(self, -1, "Rg")
573        label_rg_unit  = wx.StaticText(self, -1, "[A]")
574        label_iq0      = wx.StaticText(self, -1, "I(Q=0)")
575        label_iq0_unit = wx.StaticText(self, -1, "[A^(-1)]")
576        label_bck      = wx.StaticText(self, -1, "Background")
577        label_bck_unit = wx.StaticText(self, -1, "[A^(-1)]")
[9ff861b]578        self.rg_ctl    = OutputTextCtrl(self, -1, size=(60,20))
[3e41f43]579        hint_msg = "Radius of gyration for the computed P(r)."
580        self.rg_ctl.SetToolTipString(hint_msg)
[75df58b]581        self.iq0_ctl   = OutputTextCtrl(self, -1, size=(60, 20))
[3e41f43]582        hint_msg = "Scattering intensity at Q=0 for the computed P(r)."
583        self.iq0_ctl.SetToolTipString(hint_msg)
[75df58b]584        self.bck_ctl   = OutputTextCtrl(self, -1, size=(60, 20))
[a4bd2ac]585        self.bck_ctl.SetToolTipString("Value of estimated constant background.")
586       
[f3d51f6]587        label_time = wx.StaticText(self, -1, "Computation time")
588        label_time_unit = wx.StaticText(self, -1, "secs")
589        label_time.SetMinSize((120,20))
590        label_chi2 = wx.StaticText(self, -1, "Chi2/dof")
591        label_osc = wx.StaticText(self, -1, "Oscillations")
[dfb58f8]592        label_pos = wx.StaticText(self, -1, "Positive fraction")
593        label_pos_err = wx.StaticText(self, -1, "1-sigma positive fraction")
[f3d51f6]594       
[75df58b]595        self.time_ctl = OutputTextCtrl(self, -1, size=(60, 20))
[3e41f43]596        hint_msg = "Computation time for the last inversion, in seconds."
597        self.time_ctl.SetToolTipString(hint_msg)
[32dffae4]598       
[75df58b]599        self.chi2_ctl = OutputTextCtrl(self, -1, size=(60, 20))
[32dffae4]600        self.chi2_ctl.SetToolTipString("Chi^2 over degrees of freedom.")
601       
[dfb58f8]602        # Oscillation parameter
[75df58b]603        self.osc_ctl = OutputTextCtrl(self, -1, size=(60, 20))
[3e41f43]604        hint_msg = "Oscillation parameter. P(r) for a sphere has an "
605        hint_msg += " oscillation parameter of 1.1."
606        self.osc_ctl.SetToolTipString(hint_msg)
[f3d51f6]607       
[dfb58f8]608        # Positive fraction figure of merit
[75df58b]609        self.pos_ctl = OutputTextCtrl(self, -1, size=(60, 20))
[3e41f43]610        hint_msg = "Fraction of P(r) that is positive. "
611        hint_msg += "Theoretically, P(r) is defined positive."
612        self.pos_ctl.SetToolTipString(hint_msg)
[dfb58f8]613       
614        # 1-simga positive fraction figure of merit
[75df58b]615        self.pos_err_ctl = OutputTextCtrl(self, -1, size=(60, 20))
[3e41f43]616        message  = "Fraction of P(r) that is at least 1 standard deviation"
617        message += " greater than zero.\n"
618        message += "This figure of merit tells you about the size of the "
619        message += "P(r) errors.\n"
620        message += "If it is close to 1 and the other figures of merit are bad,"
621        message += " consider changing the maximum distance."
[dfb58f8]622        self.pos_err_ctl.SetToolTipString(message)
623       
[3e41f43]624        sizer_res = wx.GridBagSizer(5, 5)
[f3d51f6]625
626        iy = 0
[3e41f43]627        sizer_res.Add(label_rg, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
628        sizer_res.Add(self.rg_ctl,   (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
629        sizer_res.Add(label_rg_unit,   (iy, 2), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[a4bd2ac]630        iy += 1
[3e41f43]631        sizer_res.Add(label_iq0, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
632        sizer_res.Add(self.iq0_ctl,   (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
633        sizer_res.Add(label_iq0_unit, (iy, 2), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[a4bd2ac]634        iy += 1
[3e41f43]635        sizer_res.Add(label_bck, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
636        sizer_res.Add(self.bck_ctl, (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
637        sizer_res.Add(label_bck_unit, (iy, 2), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[a4bd2ac]638        iy += 1
[3e41f43]639        sizer_res.Add(label_time, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
640        sizer_res.Add(self.time_ctl,   (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
641        sizer_res.Add(label_time_unit, (iy, 2), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[f3d51f6]642        iy += 1
[3e41f43]643        sizer_res.Add(label_chi2, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
644        sizer_res.Add(self.chi2_ctl,   (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[f3d51f6]645        iy += 1
[3e41f43]646        sizer_res.Add(label_osc, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
647        sizer_res.Add(self.osc_ctl,   (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[f3d51f6]648
[dfb58f8]649        iy += 1
[3e41f43]650        sizer_res.Add(label_pos, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
651        sizer_res.Add(self.pos_ctl, (iy, 1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[dfb58f8]652
653        iy += 1
[3e41f43]654        sizer_res.Add(label_pos_err, (iy, 0), (1, 1), wx.LEFT|wx.EXPAND, 15)
655        sizer_res.Add(self.pos_err_ctl,  (iy,1), (1, 1), wx.RIGHT|wx.EXPAND, 15)
[dfb58f8]656
[f3d51f6]657        ressizer.Add(sizer_res, 0)
[4318af7f]658        iy_vb += 1
[3e41f43]659        vbox.Add(ressizer, (iy_vb, 0), (1, 1),
660                 wx.LEFT|wx.RIGHT|wx.EXPAND|wx.ADJUST_MINSIZE, 5)
[f3d51f6]661
662        # ----- Buttons -----
663        id = wx.NewId()
664        button_OK = wx.Button(self, id, "Compute")
[32dffae4]665        button_OK.SetToolTipString("Perform P(r) inversion.")
[f3d51f6]666        self.Bind(wx.EVT_BUTTON, self._on_invert, id = id)   
[b659551]667       
668        id = wx.NewId()
669        button_Reset = wx.Button(self, id, "Reset")
670        button_Reset.SetToolTipString("Reset inversion parameters to default.")
671        self.Bind(wx.EVT_BUTTON, self._on_reset, id = id)   
[f3d51f6]672        #button_Cancel = wx.Button(self, wx.ID_CANCEL, "Cancel")
673       
[5d98370]674        id = wx.NewId()
675        button_Save = wx.Button(self, id, "Save")
676        button_Save.SetToolTipString("Save the current P(r) work to file.")
[3f0351c6]677        self.Bind(wx.EVT_BUTTON, self.on_save, id=id)   
678        self._set_save_flag(True)
[f3d51f6]679        sizer_button = wx.BoxSizer(wx.HORIZONTAL)
680        sizer_button.Add((20, 20), 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0)
[5d98370]681        sizer_button.Add(button_Save, 0, wx.LEFT|wx.ADJUST_MINSIZE, 10)
[b659551]682        sizer_button.Add(button_Reset, 0, wx.LEFT|wx.ADJUST_MINSIZE, 10)
[f3d51f6]683        sizer_button.Add(button_OK, 0, wx.LEFT|wx.ADJUST_MINSIZE, 10)
[3e41f43]684       
[4318af7f]685        iy_vb += 1
[3e41f43]686        vbox.Add(sizer_button, (iy_vb, 0), (1, 1),
687                 wx.EXPAND|wx.BOTTOM|wx.TOP|wx.RIGHT, 10)
[f3d51f6]688
[a00ee4c]689        self.Bind(wx.EVT_TEXT_ENTER, self._on_invert)
[f3d51f6]690
691        self.SetSizer(vbox)
692       
[634f1cf]693    def _on_accept_alpha(self, evt):
694        """
[7116b6e0]695        User has accepted the estimated alpha,
696        set it as part of the input parameters
[634f1cf]697        """
698        try:
699            alpha = self.alpha_estimate_ctl.GetLabel()
700            tmp = float(alpha)
701            self.alpha_ctl.SetValue(alpha)
702        except:
703            # No estimate or bad estimate, either do nothing
[3e41f43]704            #import sys
[634f1cf]705            print "InversionControl._on_accept_alpha: %s" % sys.exc_value
706            pass
[35adaf6]707   
708    def _on_accept_nterms(self, evt):
709        """
[7116b6e0]710        User has accepted the estimated number of terms,
711        set it as part of the input parameters
[35adaf6]712        """
713        try:
714            nterms = self.nterms_estimate_ctl.GetLabel()
715            tmp = float(nterms)
716            self.nfunc_ctl.SetValue(nterms)
717        except:
718            # No estimate or bad estimate, either do nothing
719            import sys
720            print "InversionControl._on_accept_nterms: %s" % sys.exc_value
721            pass
[634f1cf]722       
[b659551]723    def _on_reset(self, evt):
724        """
[7116b6e0]725        Resets inversion parameters
[b659551]726        """
[6d3d5ff]727        self.nfunc = self._manager.DEFAULT_NFUNC
728        self.d_max = self._manager.DEFAULT_DMAX
729        self.alpha = self._manager.DEFAULT_ALPHA
[b659551]730        self.qmin_ctl.SetValue("")
731        self.qmax_ctl.SetValue("")
732        self.time_ctl.SetValue("")
[a4bd2ac]733        self.rg_ctl.SetValue("")
734        self.iq0_ctl.SetValue("")
735        self.bck_ctl.SetValue("")
[b659551]736        self.chi2_ctl.SetValue("")
737        self.osc_ctl.SetValue("")
738        self.pos_ctl.SetValue("")
739        self.pos_err_ctl.SetValue("")
740        self.alpha_estimate_ctl.Enable(False)
741        self.alpha_estimate_ctl.SetLabel("")
[35adaf6]742        self.nterms_estimate_ctl.Enable(False)
743        self.nterms_estimate_ctl.SetLabel("")
[b659551]744        self._on_pars_changed()
[634f1cf]745       
[b659551]746    def _on_pars_changed(self, evt=None):
[f3d51f6]747        """
[7116b6e0]748        Called when an input parameter has changed
749        We will estimate the alpha parameter behind the
750        scenes.
[f3d51f6]751        """
[2a92852]752        flag, alpha, dmax, nfunc, qmin, qmax, height, width = self._read_pars()
[a4bd2ac]753        has_bck = self.bck_chk.IsChecked()
[f3d51f6]754       
755        # If the pars are valid, estimate alpha
756        if flag:
[2a92852]757            self.nterms_estimate_ctl.Enable(False)
758            self.alpha_estimate_ctl.Enable(False)
759           
[0d88a09]760            dataset = self.plot_data.GetValue()
[6d3d5ff]761            self._manager.estimate_plot_inversion(alpha=alpha, nfunc=nfunc, 
[0d88a09]762                                                 d_max=dmax,
763                                                 q_min=qmin, q_max=qmax,
764                                                 bck=has_bck, 
765                                                 height=height,
766                                                 width=width)
[f3d51f6]767       
[7116b6e0]768    def _read_pars(self, evt=None):
769        """
770        """   
[f3d51f6]771        alpha = 0
772        nfunc = 5
773        dmax  = 120
[3fd1ebc]774        qmin  = 0
775        qmax  = 0
[2a92852]776        height = 0
777        width  = 0
[f3d51f6]778        flag = True
[2a92852]779        # Read slit height
780        try:
781            height_str = self.sheight_ctl.GetValue()
[3e41f43]782            if len(height_str.lstrip().rstrip()) == 0:
[2a92852]783                height = 0
784            else:
785                height = float(height_str)
786                self.sheight_ctl.SetBackgroundColour(wx.WHITE)
787                self.sheight_ctl.Refresh()
788        except:
789            flag = False
790            self.sheight_ctl.SetBackgroundColour("pink")
791            self.sheight_ctl.Refresh()
792           
793        # Read slit width
794        try:
795            width_str = self.swidth_ctl.GetValue()
796            if len(width_str.lstrip().rstrip())==0:
797                width = 0
798            else:
799                width = float(width_str)
800                self.swidth_ctl.SetBackgroundColour(wx.WHITE)
801                self.swidth_ctl.Refresh()
802        except:
803            flag = False
804            self.swidth_ctl.SetBackgroundColour("pink")
805            self.swidth_ctl.Refresh()
806       
[f3d51f6]807        # Read alpha
808        try:
809            alpha = float(self.alpha_ctl.GetValue())
810            self.alpha_ctl.SetBackgroundColour(wx.WHITE)
811            self.alpha_ctl.Refresh()
812        except:
813            flag = False
814            self.alpha_ctl.SetBackgroundColour("pink")
815            self.alpha_ctl.Refresh()
816       
817        # Read d_max   
818        try:
819            dmax = float(self.dmax_ctl.GetValue())
820            self.dmax_ctl.SetBackgroundColour(wx.WHITE)
821            self.dmax_ctl.Refresh()
822        except:
823            flag = False
824            self.dmax_ctl.SetBackgroundColour("pink")
825            self.dmax_ctl.Refresh()
826           
827        # Read nfunc
828        try:
829            nfunc = int(self.nfunc_ctl.GetValue())
[6d3d5ff]830            npts = self._manager.get_npts()
[3e41f43]831            if npts > 0 and nfunc > npts:
832                message = "Number of function terms should be smaller "
833                message += "than the number of points"
[6d3d5ff]834                wx.PostEvent(self._manager.parent, StatusEvent(status=message))
[b659551]835                raise ValueError, message
[f3d51f6]836            self.nfunc_ctl.SetBackgroundColour(wx.WHITE)
837            self.nfunc_ctl.Refresh()
838        except:
839            flag = False
840            self.nfunc_ctl.SetBackgroundColour("pink")
841            self.nfunc_ctl.Refresh()
842       
[634f1cf]843        # Read qmin
844        try:
845            qmin_str = self.qmin_ctl.GetValue()
[3e41f43]846            if len(qmin_str.lstrip().rstrip()) == 0:
[634f1cf]847                qmin = None
848            else:
849                qmin = float(qmin_str)
850                self.qmin_ctl.SetBackgroundColour(wx.WHITE)
851                self.qmin_ctl.Refresh()
852        except:
853            flag = False
854            self.qmin_ctl.SetBackgroundColour("pink")
855            self.qmin_ctl.Refresh()
856       
857        # Read qmax
858        try:
859            qmax_str = self.qmax_ctl.GetValue()
[3e41f43]860            if len(qmax_str.lstrip().rstrip()) == 0:
[634f1cf]861                qmax = None
862            else:
863                qmax = float(qmax_str)
864                self.qmax_ctl.SetBackgroundColour(wx.WHITE)
865                self.qmax_ctl.Refresh()
866        except:
867            flag = False
868            self.qmax_ctl.SetBackgroundColour("pink")
869            self.qmax_ctl.Refresh()
870       
[2a92852]871        return flag, alpha, dmax, nfunc, qmin, qmax, height, width
[f3d51f6]872   
[a00ee4c]873    def _on_explore(self, evt):
874        """
[7116b6e0]875        Invoke the d_max exploration dialog
[a00ee4c]876        """
877        from explore_dialog import ExploreDialog
[6d3d5ff]878        if self._manager._last_pr is not None:
879            pr = self._manager._create_plot_pr()
[a00ee4c]880            dialog = ExploreDialog(pr, 10, None, -1, "")
881            dialog.ShowModal()
882        else:
883            message = "No data to analyze. Please load a data set to proceed."
[6d3d5ff]884            wx.PostEvent(self._manager.parent, StatusEvent(status=message))
[a00ee4c]885           
[f3d51f6]886    def _on_invert(self, evt):
887        """
[7116b6e0]888        Perform inversion
889       
890        :param silent: when True, there will be no output for the user
891       
[f3d51f6]892        """
893        # Get the data from the form
894        # Push it to the manager
895       
[2a92852]896        flag, alpha, dmax, nfunc, qmin, qmax, height, width = self._read_pars()
[a4bd2ac]897        has_bck = self.bck_chk.IsChecked()
[f3d51f6]898       
899        if flag:
[0d88a09]900            dataset = self.plot_data.GetValue()
[9bc4ed23]901            if dataset==None or len(dataset.strip())==0:
[3e41f43]902                message = "No data to invert. Select a data set before"
903                message += " proceeding with P(r) inversion."
[6d3d5ff]904                wx.PostEvent(self._manager.parent, StatusEvent(status=message))
[f3d51f6]905            else:
[6d3d5ff]906                self._manager.setup_plot_inversion(alpha=alpha, nfunc=nfunc, 
[0d88a09]907                                                  d_max=dmax,
908                                                  q_min=qmin, q_max=qmax,
909                                                  bck=has_bck,
910                                                  height=height,
911                                                  width=width)
[f3d51f6]912        else:
[3e41f43]913            message = "The P(r) form contains invalid values: "
914            message += "please submit it again."
[f3d51f6]915            wx.PostEvent(self.parent, StatusEvent(status=message))
916       
[75df58b]917    def _change_file(self, evt=None, filepath=None, data=None):
[f3d51f6]918        """
[7116b6e0]919        Choose a new input file for I(q)
[f3d51f6]920        """
[6d3d5ff]921        if not self._manager is None:
[75df58b]922            self.plot_data.SetValue(str(data.name))
923            try:
[6d3d5ff]924                self._manager.show_data(data=data, reset=True)
[75df58b]925                self._on_pars_changed(None)
926                self._on_invert(None)
927            except:
928                msg = "InversionControl._change_file: %s" % sys.exc_value
929                logging.error(msg)                   
[119a11d]930
931class HelpDialog(wx.Dialog):
[7116b6e0]932    """
933    """
[119a11d]934    def __init__(self, parent, id):
[7116b6e0]935        """
936        """
[119a11d]937        from sans.pr.invertor import help
[fc4ab6e]938        wx.Dialog.__init__(self, parent, id, size=(400, 420))
[119a11d]939        self.SetTitle("P(r) help") 
940       
941
942        vbox = wx.BoxSizer(wx.VERTICAL)
943
944        explanation = help()
945           
[75df58b]946        label_explain = wx.StaticText(self, -1, explanation, size=(350, 320))
[119a11d]947           
948        vbox.Add(label_explain, 0, wx.ALL|wx.EXPAND, 15)
949
950
951        static_line = wx.StaticLine(self, -1)
952        vbox.Add(static_line, 0, wx.EXPAND, 0)
953       
954        button_OK = wx.Button(self, wx.ID_OK, "OK")
955        #button_Cancel = wx.Button(self, wx.ID_CANCEL, "Cancel")
956       
957        sizer_button = wx.BoxSizer(wx.HORIZONTAL)
958        sizer_button.Add((20, 20), 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0)
959        sizer_button.Add(button_OK, 0, wx.LEFT|wx.RIGHT|wx.ADJUST_MINSIZE, 10)
[3e41f43]960       
[119a11d]961        vbox.Add(sizer_button, 0, wx.EXPAND|wx.BOTTOM|wx.TOP, 10)
962
963        self.SetSizer(vbox)
964        self.SetAutoLayout(True)
965       
966        self.Layout()
967        self.Centre()
968
[b659551]969class PrDistDialog(wx.Dialog):
970    """
[7116b6e0]971    Property dialog to let the user change the number
972    of points on the P(r) plot.
[b659551]973    """
974    def __init__(self, parent, id):
975        from sans.pr.invertor import help
976        wx.Dialog.__init__(self, parent, id, size=(250, 120))
977        self.SetTitle("P(r) distribution") 
978       
979
980        vbox = wx.BoxSizer(wx.VERTICAL)
981       
982        label_npts = wx.StaticText(self, -1, "Number of points")
[75df58b]983        self.npts_ctl = PrTextCtrl(self, -1, size=(100, 20))
[b659551]984                 
[75df58b]985        pars_sizer = wx.GridBagSizer(5, 5)
[b659551]986        iy = 0
[75df58b]987        pars_sizer.Add(label_npts, (iy, 0), (1, 1), wx.LEFT, 15)
988        pars_sizer.Add(self.npts_ctl, (iy, 1), (1, 1), wx.RIGHT, 0)
[b659551]989       
990        vbox.Add(pars_sizer, 0, wx.ALL|wx.EXPAND, 15)
991
992        static_line = wx.StaticLine(self, -1)
993        vbox.Add(static_line, 0, wx.EXPAND, 0)
994       
995        button_OK = wx.Button(self, wx.ID_OK, "OK")
996        self.Bind(wx.EVT_BUTTON, self._checkValues, button_OK)
997        button_Cancel = wx.Button(self, wx.ID_CANCEL, "Cancel")
998       
999        sizer_button = wx.BoxSizer(wx.HORIZONTAL)
1000        sizer_button.Add((20, 20), 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0)
1001        sizer_button.Add(button_OK, 0, wx.LEFT|wx.RIGHT|wx.ADJUST_MINSIZE, 10)
[3e41f43]1002        sizer_button.Add(button_Cancel, 0,
1003                         wx.LEFT|wx.RIGHT|wx.ADJUST_MINSIZE, 10)       
[b659551]1004        vbox.Add(sizer_button, 0, wx.EXPAND|wx.BOTTOM|wx.TOP, 10)
1005
1006        self.SetSizer(vbox)
1007        self.SetAutoLayout(True)
1008       
1009        self.Layout()
1010        self.Centre()
1011
1012    def _checkValues(self, event):
1013        """
[7116b6e0]1014        Check the dialog content.
[b659551]1015        """
1016        flag = True
1017        try:
1018            int(self.npts_ctl.GetValue())
1019            self.npts_ctl.SetBackgroundColour(wx.WHITE)
1020            self.npts_ctl.Refresh()
1021        except:
1022            flag = False
1023            self.npts_ctl.SetBackgroundColour("pink")
1024            self.npts_ctl.Refresh()
1025        if flag:
1026            event.Skip(True)
1027
1028    def get_content(self):
1029        """
[7116b6e0]1030        Return the content of the dialog.
1031        At this point the values have already been
1032        checked.
[b659551]1033        """
1034        value = int(self.npts_ctl.GetValue())
1035        return value
1036   
1037    def set_content(self, npts):
1038        """
[7116b6e0]1039        Initialize the content of the dialog.
[b659551]1040        """
1041        self.npts_ctl.SetValue("%i" % npts)
1042
[f3d51f6]1043##### testing code ############################################################
[7116b6e0]1044"""
1045Example: ::
1046
[f3d51f6]1047class TestPlot:
1048    def __init__(self, text):
1049        self.name = text
1050   
1051class MyApp(wx.App):
1052    def OnInit(self):
1053        wx.InitAllImageHandlers()
[b659551]1054        dialog = PrDistDialog(None, -1)
[f3d51f6]1055        if dialog.ShowModal() == wx.ID_OK:
[119a11d]1056            pass
[f3d51f6]1057        dialog.Destroy()
1058       
1059        return 1
1060
1061# end of class MyApp
1062
1063if __name__ == "__main__":
1064    app = MyApp(0)
1065    app.MainLoop()
1066   
[7116b6e0]1067"""
[f3d51f6]1068##### end of testing code #####################################################   
Note: See TracBrowser for help on using the repository browser.