许多应用程序允许用户将一个或多个文件拖到应用程序的主窗口。
如何在我自己的 Qt 应用程序中添加对此功能的支持?
重载dragEnterEvent()
并dropEvent()
在您的MainWindow
类中,并setAcceptDrops()
在构造函数中调用:
MainWindow::MainWindow(QWidget *parent)
{
..........
setAcceptDrops(true);
}
void MainWindow::dragEnterEvent(QDragEnterEvent *e)
{
if (e->mimeData()->hasUrls()) {
e->acceptProposedAction();
}
}
void MainWindow::dropEvent(QDropEvent *e)
{
foreach (const QUrl &url, e->mimeData()->urls()) {
QString fileName = url.toLocalFile();
qDebug() << "Dropped file:" << fileName;
}
}
首先,查看Qt 参考文档:Drag and Drop了解基础知识,然后查看Drag and Drop of files on QMainWindows了解技术内容。后者提供了一个完整的例子。