Changeset f51ed67 in sasview for src/sas/qtgui/DroppableDataLoadWidget.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/DroppableDataLoadWidget.py
re540cd2 rf51ed67 1 1 # global 2 from PyQt4 import Qt Core2 from PyQt4 import QtGui, QtCore 3 3 4 4 # UI 5 from UI.DataExplorerUI import DataLoadWidget5 from UI.DataExplorerUI import Ui_DataLoadWidget 6 6 7 class DroppableDataLoadWidget( DataLoadWidget):7 class DroppableDataLoadWidget(QtGui.QTabWidget, Ui_DataLoadWidget): 8 8 """ 9 9 Overwrite drag and drop methods in the base class … … 12 12 def __init__(self, parent=None, guimanager=None): 13 13 super(DroppableDataLoadWidget, self).__init__(parent) 14 self.setupUi(self) 14 15 15 16 # Enable file drag-drop on treeView
Note: See TracChangeset
for help on using the changeset viewer.