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