Changeset a95260d in sasview for src/sas/qtgui/MainWindow.py
- Timestamp:
- Jul 10, 2016 12:41:19 PM (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:
- 8cb6cd6
- Parents:
- 0cd8612
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow.py
r0cd8612 ra95260d 1 import sys2 3 from PyQt4 import QtGui4 5 1 # UNLESS EXEPTIONALLY REQUIRED TRY TO AVOID IMPORTING ANY MODULES HERE 6 2 # ESPECIALLY ANYTHING IN SAS, SASMODELS NAMESPACE 3 from PyQt4 import QtGui 7 4 8 5 # Local UI … … 16 13 def __init__(self, reactor, parent=None): 17 14 super(MainSasViewWindow, self).__init__(parent) 18 15 19 16 # define workspace for dialogs. 20 17 self.workspace = QtGui.QWorkspace(self) … … 28 25 self.guiManager.quitApplication() 29 26 30 27 31 28 def SplashScreen(): 32 29 """
Note: See TracChangeset
for help on using the changeset viewer.