Changeset 4bddb9ca in sasview for src/sas/qtgui/MainWindow
- Timestamp:
- Aug 6, 2018 4:15:47 AM (6 years ago)
- 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:
- bc8750eb, c0de493
- Parents:
- a688be1 (diff), 97df8a9 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/GuiManager.py
re4335ae r8e2cd79 520 520 def actionCopy(self): 521 521 """ 522 """ 523 print("actionCopy TRIGGERED") 522 Send a signal to the fitting perspective so parameters 523 can be saved to the clipboard 524 """ 525 self.communicate.copyFitParamsSignal.emit("") 524 526 pass 525 527 526 528 def actionPaste(self): 527 529 """ 528 """ 529 print("actionPaste TRIGGERED") 530 pass 530 Send a signal to the fitting perspective so parameters 531 from the clipboard can be used to modify the fit state 532 """ 533 self.communicate.pasteFitParamsSignal.emit() 531 534 532 535 def actionReport(self): … … 555 558 def actionExcel(self): 556 559 """ 557 """ 558 print("actionExcel TRIGGERED") 559 pass 560 Send a signal to the fitting perspective so parameters 561 can be saved to the clipboard 562 """ 563 self.communicate.copyFitParamsSignal.emit("Excel") 560 564 561 565 def actionLatex(self): 562 566 """ 563 """ 564 print("actionLatex TRIGGERED") 565 pass 567 Send a signal to the fitting perspective so parameters 568 can be saved to the clipboard 569 """ 570 self.communicate.copyFitParamsSignal.emit("Latex") 566 571 567 572 #============ VIEW =================
Note: See TracChangeset
for help on using the changeset viewer.