Ignore:
Timestamp:
Aug 10, 2016 10:07:15 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
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
Message:

Clean up and automate generation of UI and resources

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/DroppableDataLoadWidget.py

    re540cd2 rf51ed67  
    11# global 
    2 from PyQt4 import QtCore 
     2from PyQt4 import QtGui, QtCore 
    33 
    44# UI 
    5 from UI.DataExplorerUI import DataLoadWidget 
     5from UI.DataExplorerUI import Ui_DataLoadWidget 
    66 
    7 class DroppableDataLoadWidget(DataLoadWidget): 
     7class DroppableDataLoadWidget(QtGui.QTabWidget, Ui_DataLoadWidget): 
    88    """ 
    99    Overwrite drag and drop methods in the base class 
     
    1212    def __init__(self, parent=None, guimanager=None): 
    1313        super(DroppableDataLoadWidget, self).__init__(parent) 
     14        self.setupUi(self) 
    1415 
    1516        # Enable file drag-drop on treeView 
Note: See TracChangeset for help on using the changeset viewer.