Ignore:
Timestamp:
Sep 6, 2018 5:27:00 AM (6 years ago)
Author:
Laura Forster <Awork@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
f84d793, 47471ec
Parents:
0eff615 (diff), 605d944 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'ESS_GUI' of https://github.com/SasView/sasview into ESS_GUI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/GuiManager.py

    r0eff615 r6da3e3d  
    395395        self.communicate.perspectiveChangedSignal.connect(self.perspectiveChanged) 
    396396        self.communicate.updateTheoryFromPerspectiveSignal.connect(self.updateTheoryFromPerspective) 
     397        self.communicate.deleteIntermediateTheoryPlotsSignal.connect(self.deleteIntermediateTheoryPlotsByModelID) 
    397398        self.communicate.plotRequestedSignal.connect(self.showPlot) 
    398399        self.communicate.plotFromFilenameSignal.connect(self.showPlotFromFilename) 
     
    438439        self._workspace.actionImage_Viewer.triggered.connect(self.actionImage_Viewer) 
    439440        self._workspace.actionOrientation_Viewer.triggered.connect(self.actionOrientation_Viewer) 
     441        self._workspace.actionFreeze_Theory.triggered.connect(self.actionFreeze_Theory) 
    440442        # Fitting 
    441443        self._workspace.actionNew_Fit_Page.triggered.connect(self.actionNew_Fit_Page) 
     
    684686        self._workspace.addDockWidget(Qt.RightDockWidgetArea, self.ipDockWidget) 
    685687 
     688    def actionFreeze_Theory(self): 
     689        """ 
     690        Convert a child index with data into a separate top level dataset 
     691        """ 
     692        self.filesWidget.freezeCheckedData() 
     693 
    686694    def actionOrientation_Viewer(self): 
    687695        """ 
     
    879887        """ 
    880888        self.filesWidget.updateTheoryFromPerspective(index) 
     889 
     890    def deleteIntermediateTheoryPlotsByModelID(self, model_id): 
     891        """ 
     892        Catch the signal to delete items in the Theory item model which correspond to a model ID. 
     893        Send the request to the DataExplorer for updating the theory model. 
     894        """ 
     895        self.filesWidget.deleteIntermediateTheoryPlotsByModelID(model_id) 
    881896 
    882897    def updateModelFromDataOperationPanel(self, new_item, new_datalist_item): 
Note: See TracChangeset for help on using the changeset viewer.