- Timestamp:
- Nov 6, 2018 7:38:02 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 5584dee
- Parents:
- b9ab979
- git-author:
- Piotr Rozyczko <piotr.rozyczko@…> (10/20/18 17:16:40)
- git-committer:
- Piotr Rozyczko <piotr.rozyczko@…> (11/06/18 07:38:02)
- Location:
- src/sas/qtgui
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
rb9ab979 r1942f63 100 100 self.communicator.changeDataExplorerTabSignal.connect(self.changeTabs) 101 101 self.communicator.forcePlotDisplaySignal.connect(self.displayData) 102 self.communicator.updateModelFromPerspectiveSignal.connect(self.updateModelFromPerspective) 102 103 103 104 self.cbgraph.editTextChanged.connect(self.enableGraphCombo) … … 369 370 Send selected item data to the current perspective and set the relevant notifiers 370 371 """ 371 # Set the signal handlers372 self.communicator.updateModelFromPerspectiveSignal.connect(self.updateModelFromPerspective)373 374 372 def isItemReady(index): 375 373 item = self.model.item(index) … … 1443 1441 raise AttributeError(msg) 1444 1442 1445 # TODO: Assert other properties 1446 1447 # Reset the view 1448 ##self.model.reset() 1449 # Pass acting as a debugger anchor 1443 # send in the new item 1444 self.model.appendRow(model_item) 1450 1445 pass 1451 1446 -
src/sas/qtgui/MainWindow/GuiManager.py
r0c83303 r1942f63 51 51 52 52 from sas.qtgui.Utilities.AddMultEditor import AddMultEditor 53 from sas.qtgui.Utilities.ImageViewer import ImageViewer 53 54 54 55 logger = logging.getLogger(__name__) … … 458 459 self._workspace.actionReset.setVisible(False) 459 460 self._workspace.actionStartup_Settings.setVisible(False) 460 self._workspace.actionImage_Viewer.setVisible(False)461 #self._workspace.actionImage_Viewer.setVisible(False) 461 462 self._workspace.actionCombine_Batch_Fit.setVisible(False) 462 463 # orientation viewer set to invisible SASVIEW-1132 … … 781 782 """ 782 783 """ 783 print("actionImage_Viewer TRIGGERED") 784 pass 784 try: 785 self.image_viewer = ImageViewer(self) 786 if sys.platform == "darwin": 787 self.image_viewer.menubar.setNativeMenuBar(False) 788 self.image_viewer.show() 789 except Exception as ex: 790 logging.error(str(ex)) 791 return 785 792 786 793 #============ FITTING ================= -
src/sas/qtgui/Plotting/Plotter2D.py
rb9ab979 r1942f63 513 513 self.figure.canvas.draw() 514 514 515 def imageShow(self, img, origin=None): 516 """ 517 Show background image 518 :Param img: [imread(path) from matplotlib.pyplot] 519 """ 520 if origin is not None: 521 im = self.ax.imshow(img, origin=origin) 522 else: 523 im = self.ax.imshow(img) 524 515 525 def update(self): 516 526 self.figure.canvas.draw()
Note: See TracChangeset
for help on using the changeset viewer.