也许我正在寻找错误的地方,或者我可能并不完全理解这个概念;但我正在尝试找到一个可以在QComboBox
上删除文本文件的工作示例,它会触发我可以处理的放置事件。我查看了文档,但没有关于这个主题的大量信息。
我也在四处寻找,但我也没有找到任何东西。如果我不是在正确的地方寻找,请随时指出我正确的方向。
答案 0 :(得分:1)
您必须覆盖dragEnterEvent
方法以启用接受哪种类型的元素,并使用dropEvent
方法获取有关拖动元素的信息。但为此,您必须使用self.setAcceptDrops(True)
来启用该行为
import sys
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
class ComboBox(QComboBox):
def __init__(self, *args, **kwargs):
QComboBox.__init__(self, *args, **kwargs)
self.setAcceptDrops(True)
def dragEnterEvent(self, event):
#print("formats: ", event.mimeData().formats())
if event.mimeData().hasFormat("text/plain"):
event.acceptProposedAction()
def dropEvent(self, event):
url = QUrl(event.mimeData().text().strip())
if url.isLocalFile():
file = QFile(url.toLocalFile())
if file.open(QFile.ReadOnly|QFile.Text):
ts = QTextStream(file)
while not ts.atEnd():
print(ts.readLine())
if __name__ == '__main__':
app = QApplication(sys.argv)
w = ComboBox()
w.addItems(["item {}".format(i) for i in range(10)])
w.show()
sys.exit(app.exec_())
如果您需要更多信息,可以查看Qt documentation