当前位置:   article > 正文

qt拖拽事件重写

qt拖拽事件重写

1.qt中的拖拽事件步骤

1设置接受拖拽
2重写事件就可以了
3其他的控件如何要可以套模板

2.例子

#include <QGroupBox>
#include <QObject>
#include <QDragEnterEvent>
#include <QFileInfo>
#include <QMimeData>

//重写,指出拖拽指定的文件进来,可以自己命名什么文件可以拖进来

class DGroupBox : public QGroupBox
{
    Q_OBJECT
public:
    DGroupBox(){
        setAcceptDrops(true);
    }
    
protected:
    void dragEnterEvent(QDragEnterEvent *event) override
    {
        QList<QUrl> urls = event->mimeData()->urls();
        bool acceptDrop = false;
        for (const QUrl &url : urls) {
            QString filePath = url.toLocalFile();
            //if (filePath.endsWith(".txt", Qt::CaseInsensitive))
            if(QFileInfo(filePath).fileName() == m_acceptFileName)
            {
                acceptDrop = true;
                event->setDropAction(Qt::CopyAction);
                event->accept();
                break;
            }
        }
        if (!acceptDrop) {
            event->setDropAction(Qt::IgnoreAction);
            event->ignore();
        }
    }
    
    void dragMoveEvent(QDragMoveEvent *event) override
    {
        switch (event->dropAction()) {
        case Qt::CopyAction:
            event->accept();
            setCursor(Qt::CursorShape::DragCopyCursor);
            break;
        default:
            event->ignore();
            setCursor(Qt::ForbiddenCursor);
            break;
        }
    }
    
    void dropEvent(QDropEvent *event) override
    {
        QList<QUrl> urls = event->mimeData()->urls();
        if (!urls.isEmpty()) {
            for (const QUrl &url : urls) {
                QString filePath = url.toLocalFile();
                //if (filePath.endsWith(".txt", Qt::CaseInsensitive))
                if(QFileInfo(filePath).fileName() == m_acceptFileName)
                {
                    // 将文件路径设置为QLabel的文本
                    emit accpetFile(filePath);
                }
            }
        }
        event->acceptProposedAction();
    }
signals:
    void accpetFile(QString filePath);
    
public:
    void setAcceptFileName(QString name){m_acceptFileName = name;}
private:
    QString m_acceptFileName = "encrypted_data.dat";
    
};

#endif // DGROUPBOX_H
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/306822
推荐阅读
相关标签
  

闽ICP备14008679号