PyQt拖放 - 什么都没发生

时间:2010-05-20 07:10:06

标签: python drag-and-drop pyqt

我正试图将一个文件放到一个Window上(我在QListWidget上尝试了同样的事情但没有成功)

test.py:

#! /usr/bin/python
# Test
from PyQt4 import QtCore, QtGui
import sys
from qt_test import Ui_MainWindow
class MyForm(QtGui.QMainWindow, Ui_MainWindow):
    def __init__(self, parent=None):
        QtGui.QWidget.__init__(self, parent)
        self.setupUi(self)
        self.__class__.dragEnterEvent = self.DragEnterEvent
        self.__class__.dragMoveEvent = self.DragEnterEvent
        self.__class__.dropEvent = self.drop
        self.setAcceptDrops(True)
        print "Initialized"
        self.show()

    def DragEnterEvent(self, event):
        event.accept()

    def drop(self, event):
        link=event.mimeData().text()
        print link

def main():
    app = QtGui.QApplication(sys.argv)
    mw = MyForm()
    sys.exit(app.exec_())


if __name__== "__main__":
    main()

这是qt_test.py

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'untitled.ui'
#
# Created: Thu May 20 12:23:19 2010
#      by: PyQt4 UI code generator 4.6
#
# WARNING! All changes made in this file will be lost!

from PyQt4 import QtCore, QtGui

class Ui_MainWindow(object):
    def setupUi(self, MainWindow):
        MainWindow.setObjectName("MainWindow")
        MainWindow.resize(800, 600)
        MainWindow.setAcceptDrops(True)
        self.centralwidget = QtGui.QWidget(MainWindow)
        self.centralwidget.setObjectName("centralwidget")
        MainWindow.setCentralWidget(self.centralwidget)

        self.retranslateUi(MainWindow)
        QtCore.QMetaObject.connectSlotsByName(MainWindow)

    def retranslateUi(self, MainWindow):
        MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8))

我读过this email并且我已经按照那里所说的一切。除了“已初始化”之外,我仍然没有得到任何输出,并且似乎没有接受拖动(对于文件管理器中的文件和从文本编辑器拖动的纯文本)。你知道我做错了吗?

谢谢!

1 个答案:

答案 0 :(得分:3)

是。嗯......有点。

从编辑器中拖动纯文本对我来说很好,就像文件......

将文件拖放到应用时,其类型为"text/uri-list"。为此,您需要使用event.mimeData().urls()方法获取PyQt4.QtCore.QUrl个对象的列表。

您需要以不同方式处理不同的mime数据格式。您可以使用mimeData()的以下方法来查找它具有的属性:

hasColor()
hasFormat()
hasHtml()
hasImage()
hasText()
hasUrls()