Changeset 0ba0774 in sasview for src/sas/qtgui
- Timestamp:
- Dec 14, 2016 6:49:41 AM (8 years ago)
- Branches:
- 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
- Children:
- 9290b1a
- Parents:
- 886d2f2c (diff), edbd4b6 (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. - Location:
- src/sas/qtgui
- Files:
-
- 5 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/DataExplorer.py
r8696721 r0ba0774 384 384 orig_text = self.cbgraph.currentText() 385 385 self.cbgraph.clear() 386 graph_titles = []387 386 graph_titles= ["Graph"+str(graph) for graph in graph_list] 388 387 … … 391 390 if ind > 0: 392 391 self.cbgraph.setCurrentIndex(ind) 393 pass394 392 395 393 def newPlot(self): -
src/sas/qtgui/WindowTitle.py
r27313b7 redbd4b6 1 """ 2 Allows users to change the title of the current graph 3 from "Graph_n" to any ASCII text. 4 """ 1 5 from PyQt4 import QtGui 2 3 import sas.sasview4 6 5 7 from sas.qtgui.UI.WindowTitleUI import Ui_WindowTitle … … 13 15 14 16 def title(self): 17 """ Return the new title """ 15 18 return self.txtTitle.text() 16 19 -
src/sas/qtgui/GuiManager.py
r363fbfa rabc5e70 26 26 from sas.qtgui.DensityPanel import DensityPanel 27 27 from sas.qtgui.KiessigPanel import KiessigPanel 28 from sas.qtgui.SlitSizeCalculator import SlitSizeCalculator 28 29 29 30 # Perspectives … … 139 140 self.DVCalculator = DensityPanel(self) 140 141 #self.KIESSIGCalculator = DensityPanel(self)#KiessigPanel(self) 141 self.KIESSIGCalculator = KiessigPanel(self) 142 self.KIESSIGCalculator = KiessigPanel(self) 143 self.SlitSizeCalculator = SlitSizeCalculator(self) 142 144 def statusBarSetup(self): 143 145 """ … … 539 541 """ 540 542 """ 541 print("actionSlit_Size_Calculator TRIGGERED") 542 pass 543 self.SlitSizeCalculator.show() 543 544 544 545 def actionSAS_Resolution_Estimator(self):
Note: See TracChangeset
for help on using the changeset viewer.