QListWidget派生:drop事件未触发

时间:2018-12-22 16:55:03

标签: c++ qt drag-and-drop qt5

从QListWidget派生的小部件是窗口上的唯一小部件。函数“ setAcceptDrops(true);”在其构造函数中使用“ event-> accept();”在其“ dragEnterEvent”中调用。但是,无法触发其“ dropEvent”。请在以下位置检查整个源代码(使用Qt 5.12.0创建) github.com/jianz-github/dropevent。

我在Qt Drop event not firing问了一个问题。这种情况应该是相同的,但事实并非如此。很奇怪。

在此先感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

在这种情况下,解决方案是也覆盖dragMoveEvent()方法。

listbox.h

#ifndef LISTBOX_H
#define LISTBOX_H

#include <QListWidget>
#include <QDropEvent>
#include <QDragEnterEvent>

class ListBox : public QListWidget
{
public:
    ListBox(QWidget *parent = nullptr);
protected:
    void dropEvent(QDropEvent *event) override;
    void dragEnterEvent(QDragEnterEvent *event) override;
    void dragMoveEvent(QDragMoveEvent *event) override;
};

#endif // LISTBOX_H

listbox.cpp

#include "listbox.h"
#include <QDebug>

ListBox::ListBox(QWidget *parent) : QListWidget (parent)
{
    setAcceptDrops(true);
}
void ListBox::dropEvent(QDropEvent *event)
{
    qDebug() << "dropEvent"<<event;
}
void ListBox::dragEnterEvent(QDragEnterEvent *event)
{
    event->acceptProposedAction();
}
void ListBox::dragMoveEvent(QDragMoveEvent *event)
{
    event->acceptProposedAction();
}