【QT】多文件拖拽获取路径的方法

159次阅读
没有评论

共计 1960 个字符,预计需要花费 5 分钟才能阅读完成。

qt开启拖拽后可以获取拖拽进入文件的名称,但是只能显示一个,如下开启多文件拖拽

功能
将多个文件拖拽进界面中,显示文件的路径。

实现
1、启用窗体放下操作

this->setAcceptDrops(true);//启用放下操作

2、重写dragEnterEvent()函数,用于筛选拖拽事件

void dragEnterEvent(QDragEnterEvent *e);
void MainWindow::dragEnterEvent(QDragEnterEvent *e)
{
    //对拖放事件进行筛选
    if (true)
    {
        e->acceptProposedAction();	//放行,否则不会执行dropEvent()函数
    }
}

3、重写dropEvent()函数,用于处理拖拽事件

void dropEvent(QDropEvent *e);
void MainWindow::dropEvent(QDropEvent *e)
{
    QList<QUrl> urls = e->mimeData()->urls();
    if(urls.isEmpty())
        return ;
    qDebug()<< urls.size();
    foreach (QUrl u, urls)
    {
        QString filepath = u.toLocalFile();
        pathlist.append(filepath);
    }
}

 

4、重复文件去除

QList存储文件路径,由于Qset是没有重复项的,故可先转换为set,再转回为list即可。

pathlist = pathlist.toSet().toList();

效果
UI布局

【QT】多文件拖拽获取路径的方法

最后效果

【QT】多文件拖拽获取路径的方法

源码
头文件

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
 
#include <QMainWindow>
#include <QTextEdit>
 
namespace Ui {
class MainWindow;
}
 
class MainWindow : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();
 
protected:
    void dragEnterEvent(QDragEnterEvent *e);
    void dropEvent(QDropEvent *e);
 
private slots:
    void on_pushButton_upload_clicked();
 
private:
    Ui::MainWindow *ui;
    QList<QString> pathlist;
};
 
#endif // MAINWINDOW_H

 

源文件

#include "mainwindow.h"
#include "ui_mainwindow.h"
 
#include <QDragEnterEvent>
#include <QFile>
#include <QDebug>
#include <QMimeData>
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
 
    ui->textEdit->setAcceptDrops(false); //禁用控件的放下操作
    this->setAcceptDrops(true);//启用放下操作
}
 
MainWindow::~MainWindow()
{
    delete ui;
}
 
void MainWindow::dragEnterEvent(QDragEnterEvent *e)
{
    //对拖放事件进行筛选
    if (true)
    {
        e->acceptProposedAction();	//放行,否则不会执行dropEvent()函数
    }
}
 
void MainWindow::dropEvent(QDropEvent *e)
{
    QList<QUrl> urls = e->mimeData()->urls();
    if(urls.isEmpty())
        return ;
    qDebug()<< urls.size();
    foreach (QUrl u, urls)
    {
        QString filepath = u.toLocalFile();
        pathlist.append(filepath);
    }
    //去掉重复路径
    pathlist = pathlist.toSet().toList();
    ui->textEdit->clear();
    for(int i=0;i<pathlist.size();++i)
    {
        QString path = pathlist.at(i);
        ui->textEdit->append(path);
    }
}
 
 
 
void MainWindow::on_pushButton_upload_clicked()
{
    qDebug()<<pathlist;
}

 

 

正文完
 
admin
版权声明:本站原创文章,由 admin 2021-09-16发表,共计1960字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码