簡體   English   中英

PyQt:如何在dropEvent上獲取QListWidget的listItem .data()

[英]PyQt: How to get QListWidget's listItem .data() on dropEvent

有兩個QListWidgets。 使用setData(QtCore.Qt.UserRole, myClassInstA)為每個列表項分配MyClass()的實例。

單擊較低的QListWidget的listItem將打印出使用以下方法檢索的單擊的listItem數據:

.data(QtCore.Qt.UserRole).toPyObject()

從頂部QListWidget拖放到底部的任何itemA均顯示None。 有趣的是,單擊同一項目會打印出一個數據。 我想知道是否有可能在dropOnB()函數中檢索存儲在listItem中的數據(因此dropOnB()能夠打印出存儲在項目中的數據)。


from PyQt4 import QtGui, QtCore
import sys, os

class MyClass(object):
        def __init__(self):
            super(MyClass, self).__init__()               

class ThumbListWidget(QtGui.QListWidget):
    _drag_info = []
    def __init__(self, type, name, parent=None):
        super(ThumbListWidget, self).__init__(parent)
        self.setObjectName(name)
        self.setIconSize(QtCore.QSize(124, 124))
        self.setDragDropMode(QtGui.QAbstractItemView.DragDrop)
        self.setSelectionMode(QtGui.QAbstractItemView.ExtendedSelection)
        self.setAcceptDrops(True)
        self._dropping = False

    def startDrag(self, actions):
        self._drag_info[:] = [str(self.objectName())]
        for item in self.selectedItems():
            self._drag_info.append(self.row(item))
        super(ThumbListWidget, self).startDrag(actions)

    def dragEnterEvent(self, event):
        if event.mimeData().hasUrls():
            event.accept()
        else:
            super(ThumbListWidget, self).dragEnterEvent(event)

    def dragMoveEvent(self, event):
        if event.mimeData().hasUrls():
            event.setDropAction(QtCore.Qt.CopyAction)
            event.accept()
        else:
            super(ThumbListWidget, self).dragMoveEvent(event)

    def dropEvent(self, event):
        if event.mimeData().hasUrls():
            event.setDropAction(QtCore.Qt.CopyAction)
            event.accept()
            links = []
            for url in event.mimeData().urls():
                links.append(str(url.toLocalFile()))
            self.emit(QtCore.SIGNAL("dropped"), links)
        else:
            # event.setDropAction(QtCore.Qt.MoveAction)
            self._dropping = True
            super(ThumbListWidget, self).dropEvent(event)
            self._dropping = False

    def rowsInserted(self, parent, start, end):
        if self._dropping:
            self._drag_info.append((start, end))
            self.emit(QtCore.SIGNAL("dropped"), self._drag_info)
        super(ThumbListWidget, self).rowsInserted(parent, start, end)


class Dialog_01(QtGui.QMainWindow):
    def __init__(self):
        super(QtGui.QMainWindow,self).__init__()
        self.listItems={}

        myQWidget = QtGui.QWidget()
        myBoxLayout = QtGui.QVBoxLayout()
        myQWidget.setLayout(myBoxLayout)
        self.setCentralWidget(myQWidget)

        self.listWidgetA = ThumbListWidget(self, 'MainTree')
        self.listWidgetB = ThumbListWidget(self, 'SecondaryTree')
        self.listWidgetB.setDragDropMode(QtGui.QAbstractItemView.DropOnly)

        for i in range(7):
            listItemA=QtGui.QListWidgetItem()
            listItemA.setText('A'+'%04d'%i)
            self.listWidgetA.addItem(listItemA)

            myClassInstA=MyClass()
            listItemA.setData(QtCore.Qt.UserRole, myClassInstA)

            listItemB=QtGui.QListWidgetItem()
            listItemB.setText('B'+'%04d'%i)
            self.listWidgetB.addItem(listItemB)

            myClassInstB=MyClass()
            listItemB.setData(QtCore.Qt.UserRole, myClassInstB)

        myBoxLayout.addWidget(self.listWidgetA)      

        myBoxLayout.addWidget(self.listWidgetB)   
        self.connect(self.listWidgetB, QtCore.SIGNAL("dropped"), self.droppedOnB)
        self.listWidgetB.clicked.connect(self.itemClicked)


    def droppedOnB(self, dropped_list):
        print '\n\t droppedOnB()', dropped_list, dropped_list[-1]

        destIndexes=dropped_list[-1]
        for index in range(destIndexes[0],destIndexes[-1]+1):
            dropedItem=self.listWidgetB.item(index)
            modelIndex=self.listWidgetB.indexFromItem(dropedItem)
            dataObject = modelIndex.data(QtCore.Qt.UserRole).toPyObject()
            print '\n\t\t droppedOnB()', type(modelIndex), type(dataObject)

    def itemClicked(self, modelIndex):      
        dataObject = modelIndex.data(QtCore.Qt.UserRole).toPyObject()
        print 'itemClicked(): ' ,type(modelIndex), type(dataObject)


if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)
    dialog_1 = Dialog_01()
    dialog_1.show()
    dialog_1.resize(720,480)
    sys.exit(app.exec_())

最終目標是意達滴到listWidgetB后MyClassB更換MyClassA的實例數據 -object(連接到意達)。

將itemA放到目標listWidgetB上時,iteA到達時未存儲任何數據。 如果嘗試使用itemA.data(QtCore.Qt.UserRole).toPyObject()檢索它,則返回None(如果在dropOnB()內完成-一個方法觸發第一個onDrop事件)。

嘗試分配,重新分配數據到剛剛刪除的listItem ...甚至刪除它,都會在以后引起各種意外。 我正在使用.setHidden(True)。

這些是步驟:

  1. 獲取源listItem及其數據。
  2. 獲取目的地(已刪除)項並將其隱藏。
  3. 聲明MyClassB()實例
  4. 創建新的列表項。 使用.setData(QtCore.Qt.UserRole,myClassInstB)將在上一步MyClassB()實例對象中創建的對象分配給listItem
  5. 將新的listItem添加到ListWidget。

這是一個功能代碼。 在創建時,再次為itemA分配ClassA的實例。 在將itemA放置到listWidgetB上之后,隱藏的項目被隱藏,並被分配了classB實例的另一個項目“替代”。

from PyQt4 import QtGui, QtCore
import sys, os, copy

class MyClassA(object):
        def __init__(self):
            super(MyClassA, self).__init__()               

class MyClassB(object):
        def __init__(self):
            super(MyClassB, self).__init__()
            self.DataObjectCopy=None  

class ThumbListWidget(QtGui.QListWidget):
    _drag_info = []
    def __init__(self, type, name, parent=None):
        super(ThumbListWidget, self).__init__(parent)
        self.setObjectName(name)
        self.setIconSize(QtCore.QSize(124, 124))
        self.setDragDropMode(QtGui.QAbstractItemView.DragDrop)
        self.setSelectionMode(QtGui.QAbstractItemView.ExtendedSelection)
        self.setAcceptDrops(True)
        self._dropping = False

    def startDrag(self, actions):
        self._drag_info[:] = [str(self.objectName())]
        for item in self.selectedItems():
            self._drag_info.append(self.row(item))
        super(ThumbListWidget, self).startDrag(actions)

    def dragEnterEvent(self, event):
        if event.mimeData().hasUrls():
            event.accept()
        else:
            super(ThumbListWidget, self).dragEnterEvent(event)

    def dragMoveEvent(self, event):
        if event.mimeData().hasUrls():
            event.setDropAction(QtCore.Qt.CopyAction)
            event.accept()
        else:
            super(ThumbListWidget, self).dragMoveEvent(event)

    def dropEvent(self, event):
        if event.mimeData().hasUrls():
            event.setDropAction(QtCore.Qt.CopyAction)
            event.accept()
            links = []
            for url in event.mimeData().urls():
                links.append(str(url.toLocalFile()))
            self.emit(QtCore.SIGNAL("dropped"), links)
        else:
            # event.setDropAction(QtCore.Qt.MoveAction)
            self._dropping = True
            super(ThumbListWidget, self).dropEvent(event)
            self._dropping = False

    def rowsInserted(self, parent, start, end):
        if self._dropping:
            self._drag_info.append((start, end))
            self.emit(QtCore.SIGNAL("dropped"), self._drag_info)
        super(ThumbListWidget, self).rowsInserted(parent, start, end)


class Dialog_01(QtGui.QMainWindow):
    def __init__(self):
        super(QtGui.QMainWindow,self).__init__()
        self.listItems={}

        myQWidget = QtGui.QWidget()
        myBoxLayout = QtGui.QVBoxLayout()
        myQWidget.setLayout(myBoxLayout)
        self.setCentralWidget(myQWidget)

        self.listWidgetA = ThumbListWidget(self, 'MainTree')
        self.listWidgetB = ThumbListWidget(self, 'SecondaryTree')
        self.listWidgetB.setDragDropMode(QtGui.QAbstractItemView.DropOnly)

        for i in range(3):
            listItemA=QtGui.QListWidgetItem()
            listItemA.setText('A'+'%04d'%i)
            self.listWidgetA.addItem(listItemA)

            myClassInstA=MyClassA()
            listItemA.setData(QtCore.Qt.UserRole, myClassInstA)

            listItemB=QtGui.QListWidgetItem()
            listItemB.setText('B'+'%04d'%i)
            self.listWidgetB.addItem(listItemB)

            myClassInstB=MyClassB()
            listItemB.setData(QtCore.Qt.UserRole, myClassInstB)

        myBoxLayout.addWidget(self.listWidgetA)      

        myBoxLayout.addWidget(self.listWidgetB)   
        self.connect(self.listWidgetB, QtCore.SIGNAL("dropped"), self.droppedOnB)
        self.listWidgetB.clicked.connect(self.itemClicked)


    def droppedOnB(self, dropped_list):
        if not dropped_list or len(dropped_list)<3: return       

        srcIndexes=dropped_list[1:-1]
        destIndexes=dropped_list[-1]

        # build a list of corresponding src-to-dest indexes sets
        itemsIndxes=[]
        i=0
        for num in range(destIndexes[0], destIndexes[-1]+1):
            itemsIndxes.append((srcIndexes[i], num))
            i+=1 

        print '\n\t droppedOnB(): dropped_list =',dropped_list,'; srcIndexes =',srcIndexes,'; destIndexes =',destIndexes, '; itemsIndxes =',itemsIndxes

        for indexSet in itemsIndxes:
            srcNum = indexSet[0]
            destIndxNum = indexSet[-1]

            # Get source listItem's data object
            srcItem=self.listWidgetA.item(srcNum)
            if not srcItem: continue
            srcItemData = srcItem.data(QtCore.Qt.UserRole)
            if not srcItemData: continue
            srcItemDataObject=srcItemData.toPyObject()
            if not srcItemDataObject: continue
            # make a deepcopy of src data object
            itemDataObject_copy=copy.deepcopy(srcItemDataObject)

            # get dropped item
            droppedItem=self.listWidgetB.item(destIndxNum)
            # hide dropped item since removing it results to mess
            droppedItem.setHidden(True)
            # declare new ClassB instance
            myClassInstB=MyClassB()
            myClassInstB.DataObjectCopy=itemDataObject_copy

            # create a new listItem
            newListItem=QtGui.QListWidgetItem()
            newListItem.setData(QtCore.Qt.UserRole, myClassInstB)
            newListItem.setText(srcItem.text())
            self.listWidgetB.blockSignals(True)
            self.listWidgetB.addItem(newListItem)
            self.listWidgetB.blockSignals(False)


    def itemClicked(self, modelIndex):      
        dataObject = modelIndex.data(QtCore.Qt.UserRole).toPyObject()
        print 'itemClicked(): instance type:', type(dataObject)


if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)
    dialog_1 = Dialog_01()
    dialog_1.show()
    dialog_1.resize(720,480)
    sys.exit(app.exec_())

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM