Changeset a9f9ca4 in sasview for src/sas/sasgui/perspectives/fitting/simfitpage.py
- Timestamp:
- Apr 9, 2017 10:04:02 AM (8 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 14ecc24e
- Parents:
- 9b5e70c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/simfitpage.py
r9b5e70c ra9f9ca4 1 1 """ 2 Simultaneous fit page2 Simultaneous or Batch fit page 3 3 """ 4 # Note that this is used for both Simultaneous/Constrained fit AND for 5 # combined batch fit. This is done through setting of the batch_on parameter. 6 # There are the a half dozen or so places where an if statement is used as in 7 # if not batch_on: 8 # xxxx 9 # else: 10 # xxxx 11 # This is just wrong but dont have time to fix this go. Proper approach would be 12 # to strip all parts of the code that depend on batch_on and create the top 13 # level class from which a contrained/simultaneous fit page and a combined 14 # batch page inherit. 15 # 16 # 04/09/2017 --PDB 17 4 18 import sys 5 19 from collections import namedtuple … … 400 414 # General Help button 401 415 self.btHelp = wx.Button(self, wx.ID_HELP, 'HELP') 402 self.btHelp.SetToolTipString("Simultaneous/Constrained Fitting help.") 416 if self.batch_on: 417 self.btHelp.SetToolTipString("Combined Batch Fitting help.") 418 else: 419 self.btHelp.SetToolTipString("Simultaneous/Constrained Fitting help.") 403 420 self.btHelp.Bind(wx.EVT_BUTTON, self._on_help) 404 421 … … 526 543 :param event: Triggers on clicking the help button 527 544 """ 545 _TreeLocation = "user/sasgui/perspectives/fitting/fitting_help.html" 528 546 if not self.batch_on: 529 547 _PageAnchor = "#simultaneous-fit-mode" 548 _doc_viewer = DocumentationWindow(self, self.ID_DOC, _TreeLocation, 549 _PageAnchor, 550 "Simultaneous/Constrained Fitting Help") 530 551 else: 531 552 _PageAnchor = "#combined-batch-fit-mode" 532 _TreeLocation = "user/sasgui/perspectives/fitting/fitting_help.html" 533 _doc_viewer = DocumentationWindow(self, self.ID_DOC, _TreeLocation, 553 _doc_viewer = DocumentationWindow(self, self.ID_DOC, _TreeLocation, 534 554 _PageAnchor, 535 " Simultaneous/Constrained FittingHelp")555 "Combined Batch Fit Help") 536 556 537 557 def set_manager(self, manager):
Note: See TracChangeset
for help on using the changeset viewer.