Changeset f51ed67 in sasview for src/sas/qtgui/GuiManager.py
- Timestamp:
- Aug 10, 2016 10:07:15 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:
- 0fc37fea
- Parents:
- 51b2b51
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/GuiManager.py
rff49d4d rf51ed67 20 20 import LocalConfig 21 21 import GuiUtils 22 from UI.AcknowledgementsUI import Acknowledgements22 from UI.AcknowledgementsUI import Ui_Acknowledgements 23 23 from AboutBox import AboutBox 24 24 from IPythonWidget import IPythonWidget 25 from WelcomePanel import WelcomePanel 25 26 26 27 # Perspectives 27 28 from Perspectives.Invariant.InvariantPerspective import InvariantWindow 28 29 from DataExplorer import DataExplorerWindow 29 from WelcomePanel import WelcomePanel 30 31 class Acknowledgements(QtGui.QDialog, Ui_Acknowledgements): 32 def __init__(self, parent=None): 33 QtGui.QDialog.__init__(self, parent) 34 self.setupUi(self) 30 35 31 36 class GuiManager(object):
Note: See TracChangeset
for help on using the changeset viewer.