source: sasview/fittingview/src/sans/perspectives/fitting/simfitpage.py @ 706667b

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 706667b was 284f6fe, checked in by Jae Cho <jhjcho@…>, 13 years ago

support simul. fit with one data set

  • Property mode set to 100644
File size: 33.3 KB
Line 
1
2import sys,re,string, wx 
3import wx.lib.newevent 
4from sans.guiframe.events import StatusEvent
5from sans.guiframe.panel_base import PanelBase
6from wx.lib.scrolledpanel import ScrolledPanel
7from sans.guiframe.events import PanelOnFocusEvent
8#Control panel width
9if sys.platform.count("darwin")==0:
10    PANEL_WID = 420
11    FONT_VARIANT = 0
12else:
13    PANEL_WID = 490
14    FONT_VARIANT = 1
15           
16def get_fittableParam( model):
17    """
18    return list of fittable parameters name of a model
19   
20    :param model: the model used
21   
22    """
23    fittable_param=[]
24    for item in model.getParamList():
25        if not item  in model.getDispParamList():
26            if not item in model.non_fittable:
27                fittable_param.append(item)
28           
29    for item in model.fixed:
30        fittable_param.append(item)
31       
32    return fittable_param
33
34class SimultaneousFitPage(ScrolledPanel, PanelBase):
35    """
36    Simultaneous fitting panel
37    All that needs to be defined are the
38    two data members window_name and window_caption
39    """
40    ## Internal name for the AUI manager
41    window_name = "simultaneous Fit page"
42    ## Title to appear on top of the window
43    window_caption = "Simultaneous Fit Page"
44   
45   
46    def __init__(self, parent,page_finder ={}, *args, **kwargs):
47        ScrolledPanel.__init__(self, parent,style= wx.FULL_REPAINT_ON_RESIZE )
48        PanelBase.__init__(self, parent)
49        """
50        Simultaneous page display
51        """
52        self.SetupScrolling()
53        ##Font size
54        self.SetWindowVariant(variant = FONT_VARIANT)
55        self.uid = wx.NewId()
56        self.parent = parent
57        ## store page_finder
58        self.page_finder = page_finder
59        ## list contaning info to set constraint
60        ## look like self.constraint_dict[page_id]= page
61        self.constraint_dict={}
62        ## item list 
63        # self.constraints_list=[combobox1, combobox2,=,textcrtl, button ]
64        self.constraints_list=[]
65        ## list of current model
66        self.model_list=[]
67        ## selected mdoel to fit
68        self.model_toFit=[]
69        ## number of constraint
70        self.nb_constraint= 0
71        self.uid = wx.NewId()
72        ## draw page
73        self.define_page_structure()
74        self.draw_page()
75        self.set_layout()
76       
77    def define_page_structure(self):
78        """
79        Create empty sizer for a panel
80        """
81        self.vbox  = wx.BoxSizer(wx.VERTICAL)
82        self.sizer1 = wx.BoxSizer(wx.VERTICAL)
83        self.sizer2 = wx.BoxSizer(wx.VERTICAL)
84        self.sizer3 = wx.BoxSizer(wx.VERTICAL)
85
86        self.sizer1.SetMinSize((PANEL_WID,-1))
87        self.sizer2.SetMinSize((PANEL_WID,-1))
88        self.sizer3.SetMinSize((PANEL_WID,-1))
89        self.vbox.Add(self.sizer1)
90        self.vbox.Add(self.sizer2)
91        self.vbox.Add(self.sizer3)
92       
93    def set_scroll(self):
94        """
95        """
96        #self.SetScrollbars(20,20,25,65)
97        self.Layout() 
98         
99    def set_layout(self):
100        """
101        layout
102        """
103        self.vbox.Layout()
104        self.vbox.Fit(self) 
105        self.SetSizer(self.vbox)
106        self.set_scroll()
107        self.Centre()
108       
109    def onRemove(self, event):
110        """
111        Remove constraint fields
112        """
113        if len(self.constraints_list)==1:
114            self.hide_constraint.SetValue(True)
115            self._hide_constraint()
116            return 
117        if len(self.constraints_list)==0:
118            return 
119        for item in self.constraints_list:
120            length= len(item)
121            if event.GetId()==item[length-2].GetId():
122                sizer= item[length-1]
123                sizer.Clear(True)
124                self.sizer_constraints.Remove(sizer)
125                #self.SetScrollbars(20,20,25,65)
126                self.constraints_list.remove(item)
127                self.nb_constraint -= 1
128                self.sizer2.Layout()
129                self.Layout()
130                break
131        self._onAdd_constraint(None)   
132             
133    def onFit(self, event):
134        """
135        signal for fitting
136       
137        """
138        ## making sure all parameters content a constraint
139        ## validity of the constraint expression is own by fit engine
140        if self.show_constraint.GetValue():
141            if not self._set_constraint():
142                return
143        ## model was actually selected from this page to be fit
144        if len(self.model_toFit) >= 1 :
145            self.manager._reset_schedule_problem(value=0)
146            for item in self.model_list:
147                if item[0].GetValue():
148                    self.manager.schedule_for_fit(value=1, uid=item[2]) 
149            try:
150                self.manager.onFit(uid=self.uid)
151            except:
152                msg= "Select at least one parameter to fit in the FitPages."
153                wx.PostEvent(self.parent.parent, StatusEvent(status=msg))
154        else:
155            msg= "Select at least one model to fit "
156            wx.PostEvent(self.parent.parent, StatusEvent(status=msg))
157           
158    def set_manager(self, manager):
159        """
160        set panel manager
161       
162        :param manager: instance of plugin fitting
163       
164        """
165        self.manager = manager
166       
167    def check_all_model_name(self,event):
168        """
169        check all models names
170        """
171        self.model_toFit = [] 
172        if self.cb1.GetValue()== True:
173            for item in self.model_list:
174                if item[0].IsEnabled():
175                    item[0].SetValue(True)
176                    self.model_toFit.append(item)
177               
178            ## constraint info
179            self._store_model()
180            ## display constraint fields
181            if self.show_constraint.GetValue():
182                self._show_all_constraint() 
183                self._show_constraint()
184                return
185        else:
186            for item in self.model_list:
187                item[0].SetValue(False) 
188               
189            self.model_toFit=[]
190            ##constraint info
191            self._hide_constraint()
192       
193    def check_model_name(self,event):
194        """
195        Save information related to checkbox and their states
196        """
197        self.model_toFit=[]
198        for item in self.model_list:
199            if item[0].GetValue()==True:
200                self.model_toFit.append(item)
201            else:
202                if item in self.model_toFit:
203                    self.model_toFit.remove(item)
204                    self.cb1.SetValue(False)
205       
206        ## display constraint fields
207        if len(self.model_toFit)==1:
208            self._store_model()
209            if self.show_constraint.GetValue() and\
210                             len(self.constraints_list)==0:
211                self._show_all_constraint() 
212                self._show_constraint()
213        elif len(self.model_toFit)< 1:
214            ##constraint info
215            self._hide_constraint()             
216       
217        ## set the value of the main check button         
218        if len(self.model_list)==len(self.model_toFit):
219            self.cb1.SetValue(True)
220            return
221        else:
222            self.cb1.SetValue(False)
223       
224    def draw_page(self):     
225        """
226        Draw a sizer containing couples of data and model
227        """ 
228        self.model_list=[]
229        self.model_toFit=[]
230        self.constraints_list=[]
231        self.constraint_dict={}
232        self.nb_constraint= 0
233       
234        if len(self.model_list)>0:
235            for item in self.model_list:
236                item[0].SetValue(False) 
237                self.manager.schedule_for_fit(value=0, uid=item[2])
238               
239        self.sizer1.Clear(True)   
240        box_description= wx.StaticBox(self, -1,"Fit Combinations")
241        boxsizer1 = wx.StaticBoxSizer(box_description, wx.VERTICAL)
242        sizer_title = wx.BoxSizer(wx.HORIZONTAL)
243        sizer_couples = wx.GridBagSizer(5,5)
244        #------------------------------------------------------
245        if len(self.page_finder)==0:
246            msg = " No fit combinations are found! \n\n"
247            msg += " Please load data and set up "
248            msg += "at least two fit panels first..."
249            sizer_title.Add(wx.StaticText(self, -1, msg))
250        else:
251            ## store model 
252            self._store_model()
253       
254            self.cb1 = wx.CheckBox(self, -1,'Select all')
255            self.cb1.SetValue(False)
256            wx.EVT_CHECKBOX(self, self.cb1.GetId(), self.check_all_model_name)
257           
258            sizer_title.Add((10,10),0,
259                wx.TOP|wx.BOTTOM|wx.EXPAND|wx.ADJUST_MINSIZE,border=5)
260            sizer_title.Add(self.cb1,0,
261                wx.TOP|wx.BOTTOM|wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE,border=5)
262           
263            ## draw list of model and data name
264            self._fill_sizer_model_list(sizer_couples)
265            ## draw the sizer containing constraint info
266            self._fill_sizer_constraint()
267            ## draw fit button
268            self._fill_sizer_fit()
269        #--------------------------------------------------------
270        boxsizer1.Add(sizer_title, flag= wx.TOP|wx.BOTTOM,border=5) 
271        boxsizer1.Add(sizer_couples, 1, flag= wx.TOP|wx.BOTTOM,border=5)
272       
273        self.sizer1.Add(boxsizer1, 1, wx.EXPAND | wx.ALL, 10)
274        self.sizer1.Layout()
275        #self.SetScrollbars(20,20,25,65)
276        self.AdjustScrollbars()
277        self.Layout()
278       
279    def _store_model(self):
280        """
281         Store selected model
282        """
283        if len(self.model_toFit) < 1:
284            return
285        for item in self.model_toFit:
286            model = item[3]
287            page_id= item[2]
288            self.constraint_dict[page_id] = model
289                   
290    def _display_constraint(self, event):
291        """
292        Show fields to add constraint
293        """
294        if len(self.model_toFit)< 1:
295            msg= "Select at least 2 models to add constraint "
296            wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
297            ## hide button
298            self._hide_constraint()
299            return
300        if self.show_constraint.GetValue():
301            self._show_all_constraint() 
302            self._show_constraint()
303            self.Layout()
304            return
305        else:
306           self._hide_constraint()
307           self.Layout()
308           return 
309       
310    def _show_all_constraint(self):
311        """
312        Show constraint fields
313        """
314        #for id, model in self.constraint_dict.iteritems():   
315        box_description= wx.StaticBox(self, -1,"Easy Setup ")
316        boxsizer = wx.StaticBoxSizer(box_description, wx.HORIZONTAL)     
317        sizer_constraint =  wx.BoxSizer(wx.HORIZONTAL|wx.LEFT|wx.RIGHT|wx.EXPAND)
318        self.model_cbox_left = wx.ComboBox(self, -1, style=wx.CB_READONLY)
319        self.model_cbox_left.Clear()
320        self.model_cbox_right = wx.ComboBox(self, -1, style=wx.CB_READONLY)
321        self.model_cbox_right.Clear()
322        wx.EVT_COMBOBOX(self.model_cbox_left, -1, self._on_select_modelcb)
323        wx.EVT_COMBOBOX(self.model_cbox_right, -1, self._on_select_modelcb)
324        egal_txt= wx.StaticText(self,-1," = ")
325        self.set_button =wx.Button(self, wx.NewId(),'Set All')
326        self.set_button.Bind(wx.EVT_BUTTON, self._on_set_all_equal,
327                                       id=self.set_button.GetId())
328        set_tip = "Add constraints for all the adjustable parameters "
329        set_tip += "(checked in FitPages) if exist."
330        self.set_button.SetToolTipString(set_tip)
331        self.set_button.Disable()
332       
333        for id, model in self.constraint_dict.iteritems():
334            ## check if all parameters have been selected for constraint
335            ## then do not allow add constraint on parameters
336            self.model_cbox_left.Append( str(model.name), model)
337        self.model_cbox_left.Select(0)
338        for id, model in self.constraint_dict.iteritems():
339            ## check if all parameters have been selected for constraint
340            ## then do not allow add constraint on parameters
341            self.model_cbox_right.Append( str(model.name), model)
342        boxsizer.Add(self.model_cbox_left, 
343                             flag= wx.RIGHT|wx.EXPAND, border=10)
344        boxsizer.Add(wx.StaticText(self, -1,".parameters"),
345                             flag= wx.RIGHT|wx.EXPAND, border=5)
346        boxsizer.Add(egal_txt, flag= wx.RIGHT|wx.EXPAND, border=5)
347        boxsizer.Add(self.model_cbox_right, 
348                             flag= wx.RIGHT|wx.EXPAND, border=10)
349        boxsizer.Add(wx.StaticText(self, -1,".parameters"),
350                             flag= wx.RIGHT|wx.EXPAND,border=5)
351        boxsizer.Add((20,-1))
352        boxsizer.Add(self.set_button, flag= wx.RIGHT|wx.EXPAND, border=5)
353        sizer_constraint.Add(boxsizer, flag= wx.RIGHT|wx.EXPAND, border=5)
354        self.sizer_all_constraints.Insert(before=0,
355                             item=sizer_constraint, 
356                             flag= wx.TOP|wx.BOTTOM|wx.EXPAND, border=5)
357
358        self.sizer_all_constraints.Layout()
359        self.sizer2.Layout()
360        #self.SetScrollbars(20,20,25,65)
361   
362    def _on_select_modelcb(self, event):
363        """
364        On select model left or right combobox
365        """
366        event.Skip()
367        flag = True
368        if self.model_cbox_left.GetValue().strip() == '':
369            flag = False
370        if self.model_cbox_right.GetValue().strip() == '':
371            flag = False
372        if self.model_cbox_left.GetValue() ==\
373                self.model_cbox_right.GetValue():
374            flag = False
375        self.set_button.Enable(flag)
376       
377    def _on_set_all_equal(self, event):
378        """
379        On set button
380        """
381        event.Skip()
382        length = len(self.constraints_list)
383        if length < 1:
384            return 
385        param_list = []
386        param_listB = []
387        selection = self.model_cbox_left.GetCurrentSelection()
388        model_left = self.model_cbox_left.GetValue()
389        model = self.model_cbox_left.GetClientData(selection)
390        selectionB = self.model_cbox_right.GetCurrentSelection()
391        model_right = self.model_cbox_right.GetValue()
392        modelB = self.model_cbox_right.GetClientData(selectionB)
393        for id, dic_model in self.constraint_dict.iteritems():
394            if model == dic_model:
395                param_list = self.page_finder[id].get_param2fit()
396            if modelB == dic_model:
397                param_listB = self.page_finder[id].get_param2fit()
398            if len(param_list) > 0 and len(param_listB) > 0:
399                break
400        #param_list= get_fittableParam(model)
401        #param_listB= get_fittableParam(modelB)
402        num_cbox = 0
403        has_param = False
404        for param in param_list:
405            num_cbox += 1
406            if param in param_listB:
407                self.model_cbox.SetStringSelection(model_left)
408                self._on_select_model(None)
409                self.param_cbox.Clear()
410                self.param_cbox.Append( str(param), model)
411                self.param_cbox.SetStringSelection( str(param))
412                self.ctl2.SetValue(str(model_right + "." + str(param)))
413                has_param = True
414                if num_cbox == (len(param_list) + 1):
415                    break
416                self._show_constraint()
417       
418        self.sizer_constraints.Layout()
419        self.sizer2.Layout()
420        self.SetScrollbars(20,20,25,65)
421        self.Layout()
422        if not has_param:
423            msg= " There is no adjustable parameter (checked to fit)"
424            msg += " either one of the models."
425            wx.PostEvent(self.parent.parent, StatusEvent(info="warning", 
426                                                         status= msg ))
427        else:
428            msg= " The constraints are added."
429            wx.PostEvent(self.parent.parent, StatusEvent(info="info", 
430                                                         status= msg ))     
431    def _show_constraint(self):
432        """
433        Show constraint fields
434        """
435        self.btAdd.Show(True)
436        if len(self.constraints_list)!= 0:
437            nb_fit_param = 0
438            for id, model in self.constraint_dict.iteritems():
439                nb_fit_param += len(self.page_finder[id].get_param2fit())
440            ##Don't add anymore
441            if len(self.constraints_list) == nb_fit_param:
442                msg= "Cannot add another constraint .Maximum of number "
443                msg += "Parameters name reached %s"%str(nb_fit_param)
444                wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
445                self.sizer_constraints.Layout()
446                self.sizer2.Layout()
447                #self.SetScrollbars(20,20,25,65)
448                return
449        if len(self.model_toFit) < 1 :
450            msg= "Select at least 1 model to add constraint "
451            wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
452            self.sizer_constraints.Layout()
453            self.sizer2.Layout()
454            #self.SetScrollbars(20,20,25,65)
455            return
456           
457        sizer_constraint =  wx.BoxSizer(wx.HORIZONTAL)
458        model_cbox = wx.ComboBox(self, -1,style=wx.CB_READONLY)
459        model_cbox.Clear()
460        param_cbox = wx.ComboBox(self, -1,style=wx.CB_READONLY, size=(100,-1),)
461        param_cbox.Hide()
462       
463        #This is for GetCLientData() _on_select_param: Was None return on MAC.
464        self.param_cbox = param_cbox
465       
466        wx.EVT_COMBOBOX(param_cbox,-1, self._on_select_param)
467        self.ctl2 = wx.TextCtrl(self, -1)
468        egal_txt= wx.StaticText(self,-1, " = ")
469        self.btRemove = wx.Button(self,wx.NewId(),'Remove')
470        self.btRemove.Bind(wx.EVT_BUTTON, self.onRemove, 
471                                    id=self.btRemove.GetId())
472        self.btRemove.SetToolTipString("Remove constraint.")
473        self.btRemove.Hide()
474        if hasattr(self,"btAdd"):
475            self.btAdd.Hide()
476        for id, model in self.constraint_dict.iteritems():
477            ## check if all parameters have been selected for constraint
478            ## then do not allow add constraint on parameters
479            model_cbox.Append( str(model.name), model)
480           
481        #This is for GetCLientData() passing to self._on_select_param: Was None return on MAC.
482        self.model_cbox = model_cbox
483           
484        wx.EVT_COMBOBOX(model_cbox,-1, self._on_select_model)
485        sizer_constraint.Add((5,-1))
486        sizer_constraint.Add(model_cbox, flag= wx.RIGHT|wx.EXPAND,border=10)
487        sizer_constraint.Add(param_cbox, flag= wx.RIGHT|wx.EXPAND,border=5)
488        sizer_constraint.Add(egal_txt, flag= wx.RIGHT|wx.EXPAND,border=5)
489        sizer_constraint.Add(self.ctl2, flag= wx.RIGHT|wx.EXPAND,border=10)
490        sizer_constraint.Add(self.btRemove, flag= wx.RIGHT|wx.EXPAND,border=10)
491     
492        self.sizer_constraints.Insert(before=self.nb_constraint,
493                        item=sizer_constraint, flag= wx.TOP|wx.BOTTOM|wx.EXPAND,
494                        border=5)
495        ##[combobox1, combobox2,=,textcrtl, remove button ]
496        self.constraints_list.append([model_cbox, param_cbox, egal_txt, 
497                                    self.ctl2,self.btRemove,sizer_constraint])
498   
499        self.nb_constraint += 1
500        self.sizer_constraints.Layout()
501        self.sizer2.Layout()
502        #self.SetScrollbars(20,20,25,65)
503       
504    def _hide_constraint(self): 
505        """
506        hide buttons related constraint
507        """ 
508        for id in  self.page_finder.iterkeys():
509            self.page_finder[id].clear_model_param()
510               
511        self.nb_constraint = 0     
512        self.constraint_dict = {}
513        if hasattr(self,"btAdd"):
514            self.btAdd.Hide()
515        self._store_model()
516        self.constraints_list = []   
517        self.sizer_all_constraints.Clear(True) 
518        self.sizer_all_constraints.Layout()         
519        self.sizer_constraints.Clear(True) 
520        self.sizer_constraints.Layout()   
521        self.sizer2.Layout()
522        #self.SetScrollbars(20,20,25,65)
523        #self.AdjustScrollbars()   
524           
525    def _on_select_model(self, event):
526        """
527        fill combox box with list of parameters
528        """
529        ##This way PC/MAC both work, instead of using event.GetClientData().
530        n = self.model_cbox.GetCurrentSelection()
531        model = self.model_cbox.GetClientData(n)
532        for id, dic_model in self.constraint_dict.iteritems():
533            if model == dic_model:
534                param_list = self.page_finder[id].get_param2fit()
535                break
536        #param_list= get_fittableParam(model)
537        length = len(self.constraints_list)
538        if length < 1:
539            return 
540        param_cbox = self.constraints_list[length-1][1]
541        param_cbox.Clear()
542        ## insert only fittable paramaters
543        for param in param_list:
544            param_cbox.Append( str(param), model)
545           
546        param_cbox.Show(True)
547        self.btRemove.Show(True)
548        self.btAdd.Show(True)
549        self.sizer2.Layout()
550        #self.SetScrollbars(20,20,25,65)
551       
552    def _on_select_param(self, event):
553        """
554        Store the appropriate constraint in the page_finder
555        """
556        ##This way PC/MAC both work, instead of using event.GetClientData().
557        n = self.param_cbox.GetCurrentSelection()
558        model = self.param_cbox.GetClientData(n)
559        param = event.GetString()
560     
561        length = len(self.constraints_list)
562        if length < 1:
563            return 
564        egal_txt = self.constraints_list[length-1][2]
565        egal_txt.Show(True)       
566       
567        ctl2 = self.constraints_list[length-1][3]
568        ctl2.Show(True)
569        #self.sizer2.Layout()
570        #self.SetScrollbars(20,20,25,65)
571       
572    def _onAdd_constraint(self, event): 
573        """
574        Add another line for constraint
575        """
576        if not self.show_constraint.GetValue():
577            msg= " Select Yes to add Constraint "
578            wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
579            return 
580        ## check that a constraint is added
581        # before allow to add another constraint
582        for item in self.constraints_list:
583            model_cbox = item[0]
584            if model_cbox.GetString(0)=="":
585                msg= " Select a model Name! "
586                wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
587                return 
588            param_cbox = item[1]
589            if param_cbox.GetString(0)=="":
590                msg= " Select a parameter Name! "
591                wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
592                return 
593            ctl2 = item[3]
594            if ctl2.GetValue().lstrip().rstrip()=="":
595                model= param_cbox.GetClientData(param_cbox.GetCurrentSelection())
596                msg= " Enter a constraint for %s.%s! "%(model.name, 
597                                                        param_cbox.GetString(0))           
598                wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
599                return 
600        ## some model or parameters can be constrained
601        self._show_constraint()
602       
603    def _fill_sizer_fit(self):
604        """
605        Draw fit button
606        """
607        self.sizer3.Clear(True)
608        box_description= wx.StaticBox(self, -1,"Fit ")
609        boxsizer1 = wx.StaticBoxSizer(box_description, wx.VERTICAL)
610        sizer_button = wx.BoxSizer(wx.HORIZONTAL)
611         
612        self.btFit = wx.Button(self,wx.NewId(),'Fit')
613        self.btFit.Bind(wx.EVT_BUTTON, self.onFit,id= self.btFit.GetId())
614        self.btFit.SetToolTipString("Perform fit.")
615       
616        text= "Hint: Park fitting engine will be selected automatically. \n"
617        #text+= "automatically for more than 2 combinations checked"
618        text_hint = wx.StaticText(self,-1,text)
619       
620        sizer_button.Add(text_hint,  wx.RIGHT|wx.EXPAND, 10)
621        sizer_button.Add(self.btFit, 0, wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 10)
622       
623        boxsizer1.Add(sizer_button, flag= wx.TOP|wx.BOTTOM,border=10)
624        self.sizer3.Add(boxsizer1,0, wx.EXPAND | wx.ALL, 10)
625        self.sizer3.Layout()
626        #self.SetScrollbars(20,20,25,65)
627       
628    def _fill_sizer_constraint(self):
629        """
630        Fill sizer containing constraint info
631        """
632        msg = "Select at least 2 model to add constraint "
633        wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
634       
635        self.sizer2.Clear(True)
636        box_description= wx.StaticBox(self, -1,"Fit Constraints")
637        boxsizer1 = wx.StaticBoxSizer(box_description, wx.VERTICAL)
638        sizer_title = wx.BoxSizer(wx.HORIZONTAL)
639        self.sizer_all_constraints = wx.BoxSizer(wx.HORIZONTAL)
640        self.sizer_constraints = wx.BoxSizer(wx.VERTICAL)
641        sizer_button = wx.BoxSizer(wx.HORIZONTAL)
642       
643        self.hide_constraint = wx.RadioButton(self, -1, 'No', (10, 10), 
644                                              style=wx.RB_GROUP)
645        self.show_constraint = wx.RadioButton(self, -1, 'Yes', (10, 30))
646        self.Bind( wx.EVT_RADIOBUTTON, self._display_constraint,
647                    id= self.hide_constraint.GetId() )
648        self.Bind(  wx.EVT_RADIOBUTTON, self._display_constraint,
649                         id= self.show_constraint.GetId()    )
650        self.hide_constraint.SetValue(True)
651        sizer_title.Add( wx.StaticText(self,-1," Model") )
652        sizer_title.Add(( 10,10) )
653        sizer_title.Add( wx.StaticText(self,-1," Parameter") )
654        sizer_title.Add(( 10,10) )
655        sizer_title.Add( wx.StaticText(self,-1," Add Constraint?") )
656        sizer_title.Add(( 10,10) )
657        sizer_title.Add( self.show_constraint )
658        sizer_title.Add( self.hide_constraint )
659        sizer_title.Add(( 10,10) )
660       
661        self.btAdd =wx.Button(self,wx.NewId(),'Add')
662        self.btAdd.Bind(wx.EVT_BUTTON, self._onAdd_constraint, 
663                        id=self.btAdd.GetId())
664        self.btAdd.SetToolTipString("Add another constraint?")
665        self.btAdd.Hide()
666     
667        text_hint = wx.StaticText(self, -1, 
668                                  "Example: [M0][paramter] = M1.parameter") 
669        sizer_button.Add(text_hint, 0 , wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 10)
670        sizer_button.Add(self.btAdd, 0, wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 10)
671       
672        boxsizer1.Add(sizer_title, flag= wx.TOP|wx.BOTTOM,border=10)
673        boxsizer1.Add(self.sizer_all_constraints, flag= wx.TOP|wx.BOTTOM, 
674                      border=10)
675        boxsizer1.Add(self.sizer_constraints, flag= wx.TOP|wx.BOTTOM, 
676                      border=10)
677        boxsizer1.Add(sizer_button, flag= wx.TOP|wx.BOTTOM, border=10)
678       
679        self.sizer2.Add(boxsizer1,0, wx.EXPAND | wx.ALL, 10)
680        self.sizer2.Layout()
681        #self.SetScrollbars(20,20,25,65)
682   
683    def _set_constraint(self):
684        """
685        get values from the constrainst textcrtl ,parses them into model name
686        parameter name and parameters values.
687        store them in a list self.params .when when params is not empty
688        set_model uses it to reset the appropriate model
689        and its appropriates parameters
690        """
691        for item in self.constraints_list:
692            model = item[0].GetClientData(item[0].GetCurrentSelection())
693            param = item[1].GetString(item[1].GetCurrentSelection())
694            constraint = item[3].GetValue().lstrip().rstrip()
695            if param.lstrip().rstrip()=="":
696                param= None
697                msg= " Constraint will be ignored!. missing parameters"
698                msg+= " in combobox to set constraint! "
699                wx.PostEvent(self.parent.parent, StatusEvent(status= msg ))
700            for id, value in self.constraint_dict.iteritems():
701                if model == value:
702                    if constraint == "":
703                        msg= " Constraint will be ignored!. missing value"
704                        msg+= " in textcrtl to set constraint! "
705                        wx.PostEvent(self.parent.parent, 
706                                     StatusEvent(status= msg ))
707                        constraint = None
708                    if str(param) in self.page_finder[id].get_param2fit():
709                        msg = " Checking constraint for parameter: %s ", param
710                        wx.PostEvent(self.parent.parent, 
711                                    StatusEvent(info="info", status= msg ))
712                    else:
713                        model_name = item[0].GetLabel()
714                        fitpage = self.page_finder[id].get_fit_tab_caption()
715                        msg = "All constrainted parameters must be set "
716                        msg += " adjustable: '%s.%s' "% (model_name, param)
717                        msg += "is NOT checked in '%s'. "% fitpage
718                        msg += " Please check it to fit or"
719                        msg += " remove the line of the constraint."
720                        wx.PostEvent(self.parent.parent, 
721                                StatusEvent(info="error", status= msg ))
722                        return False
723                       
724                    for fid in self.page_finder[id].iterkeys():
725                        self.page_finder[id].set_model_param(param,
726                                                        constraint, fid=fid)
727                    break
728        return True
729   
730    def _fill_sizer_model_list(self,sizer):
731        """
732        Receive a dictionary containing information to display model name
733       
734        :param page_finder: the dictionary containing models information
735       
736        """
737        ix = 0
738        iy = 0
739        list=[]
740        sizer.Clear(True)
741       
742        new_name = wx.StaticText(self, -1, 'New Model Name', 
743                                 style=wx.ALIGN_CENTER)
744        new_name.SetBackgroundColour('orange')
745        sizer.Add(new_name,(iy, ix),(1,1),
746                            wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
747        ix += 2 
748        model_type = wx.StaticText(self, -1, '  Model Type')
749        model_type.SetBackgroundColour('grey')
750        sizer.Add(model_type,(iy, ix),(1,1),
751                            wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
752        ix += 1 
753        data_used = wx.StaticText(self, -1, '  Used Data')
754        data_used.SetBackgroundColour('grey')
755        sizer.Add(data_used,(iy, ix),(1,1),
756                            wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
757        ix += 1 
758        tab_used = wx.StaticText(self, -1, '  Fit Tab')
759        tab_used.SetBackgroundColour('grey')
760        sizer.Add(tab_used,(iy, ix),(1,1),
761                            wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
762        for id, value in self.page_finder.iteritems():
763            try:
764                ix = 0
765                for fitproblem in value.get_fit_problem():
766                    if  not self.parent.get_page_by_id(id).batch_on:
767                        iy += 1 
768                        data = fitproblem.get_fit_data()
769                        model = fitproblem.get_model()
770                        name = '_'
771                        if model is not None:
772                            name = str(model.name)
773                        cb = wx.CheckBox(self, -1, name)
774                        cb.SetValue(False)
775                        cb.Enable(model is not None and data.is_data)
776                        sizer.Add(cb, (iy, ix), (1, 1), 
777                                   wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
778                        wx.EVT_CHECKBOX(self, cb.GetId(), self.check_model_name)
779                        ix += 2 
780                        type = model.__class__.__name__
781                        model_type = wx.StaticText(self, -1, str(type))
782                        sizer.Add(model_type, (iy, ix), (1, 1), 
783                                  wx.EXPAND|wx.ADJUST_MINSIZE, 0)
784                        name = '-'
785                        if data is not None and data.is_data:
786                            name = str(data.name)
787                        data_used = wx.StaticText(self, -1, name)
788                        ix += 1 
789                        sizer.Add(data_used, (iy, ix), (1, 1), 
790                                  wx.EXPAND|wx.ADJUST_MINSIZE, 0)
791                        ix += 1 
792                        caption = value.get_fit_tab_caption()
793                        tab_caption_used= wx.StaticText(self, -1, str(caption))
794                        sizer.Add(tab_caption_used, (iy, ix), (1, 1), 
795                                  wx.EXPAND|wx.ADJUST_MINSIZE, 0)
796                   
797                        self.model_list.append([cb,value,id,model])
798               
799            except:
800                raise
801                #pass
802        iy += 1
803        sizer.Add((20, 20), (iy, ix), (1, 1), 
804                  wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15)
805        sizer.Layout()   
806   
807
808    def on_set_focus(self, event=None):
809        """
810        The  derivative class is on focus if implemented
811        """
812        if self.parent is not None:
813            if self.parent.parent is not None:
814                wx.PostEvent(self.parent.parent, PanelOnFocusEvent(panel=self))
815            self.page_finder = self.parent._manager.get_page_finder()
816       
Note: See TracBrowser for help on using the repository browser.