C
Feb. 12, 2021, 6:35 p.m.
QFileSystemModel проблема с перетаскиванием файлов
Здравствуйте!
Я хочу сделать возможность перетаскивание файлов (drag and drop) между QTreeView и QListView. Для этого унаследовал QFileSystemModel и переписал несколько методов.
ExplorerModel.h
- #ifndef EXPLORERMODEL_H
- #define EXPLORERMODEL_H
- #include <QObject>
- #include <QFileSystemModel>
- #include <QMimeData>
- #include <QDebug>
- class ExplorerModel : public QFileSystemModel
- {
- Q_OBJECT
- public:
- using QFileSystemModel::QFileSystemModel;
- Qt::DropActions supportedDragActions() const;
- Qt::DropActions supportedDropActions() const;
- QStringList mimeTypes() const;
- Qt::ItemFlags flags(const QModelIndex &index) const;
- QMimeData *mimeData(const QModelIndexList &indexes) const;
- bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
- private:
- bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
- };
- #endif // EXPLORERMODEL_H
ExplorerModel.cpp
- #include "explorermodel.h"
- Qt::DropActions ExplorerModel::supportedDragActions() const
- {
- return Qt::CopyAction | Qt::MoveAction;
- }
- Qt::DropActions ExplorerModel::supportedDropActions() const
- {
- return Qt::CopyAction | Qt::MoveAction;
- }
- Qt::ItemFlags ExplorerModel::flags(const QModelIndex &index) const
- {
- Qt::ItemFlags defaultFlags = QFileSystemModel::flags(index);
- if (index.isValid()) {
- return Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled | defaultFlags;
- } else {
- return Qt::ItemIsDropEnabled | defaultFlags;
- }
- }
- QStringList ExplorerModel::mimeTypes() const
- {
- QStringList types;
- types << "application/octet-stream";
- return types;
- }
- QMimeData *ExplorerModel::mimeData(const QModelIndexList &indexes) const
- {
- QMimeData *mimeData = new QMimeData;
- QByteArray encodedData;
- QDataStream stream(&encodedData, QIODevice::WriteOnly);
- if (indexes.first().isValid()) {
- QString fileName = data(indexes.first(), Qt::DisplayRole).toString();
- qDebug() << fileName;
- stream << fileName;
- }
- mimeData->setData("application/octet-stream", encodedData);
- return mimeData;
- }
- bool ExplorerModel::canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
- {
- Q_UNUSED(action);
- Q_UNUSED(row);
- Q_UNUSED(parent);
- if (!data->hasFormat("application/octet-stream")) {
- return false;
- }
- if (column > 0) {
- return false;
- }
- return true;
- }
- bool ExplorerModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
- {
- if (!canDropMimeData(data, action, row, column, parent)) {
- return false;
- }
- if (action == Qt::IgnoreAction) {
- return true;
- }
- int beginRow;
- if (row != -1) {
- beginRow = row;
- } else if (parent.isValid()) {
- beginRow = parent.row();
- } else {
- beginRow = rowCount(QModelIndex());
- }
- QByteArray encodedData = data->data("application/octet-stream");
- QDataStream stream(&encodedData, QIODevice::ReadOnly);
- QString fileName;
- while (!stream.atEnd()) {
- stream >> fileName;
- }
- //removeRow(row, parent);
- insertRow(beginRow, parent);
- QModelIndex idx = index(beginRow, 0, QModelIndex());
- qDebug() << "Filename: " << fileName;
- setData(idx, fileName);
- return true;
- }
Выводит вот такую ошибку:
Скриншот 1
Ничего не копирует и не переносит. Есть какие-то идеи как исправить эту ошибку? Спасибо.
1
253
Do you like it? Share on social networks!
- Last comments
- AKApril 1, 2025, 11:41 a.m.Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
- VPMarch 9, 2025, 4:14 p.m.Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
- ИМNov. 22, 2024, 9:51 p.m.Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
- Now discuss on the forum
- МАApril 1, 2025, 4:21 p.m.0ff763fe-4e50-455d-a3a6-5699c243b1a5_17_44_22_1.xml
- fFeb. 15, 2025, 1:46 p.m.Подскажите, пожалуйста! Как данный класс можно дополнить, чтобы созданные объекты можно было перемещать мышкой по сцене?
- Не запускается компьютер (точнее работает блок , но сам монитор вообще жесть)В общем я ничего с интернета не скачивала в последнее время. На компе никаких левых пр…
- Вопрос решен. Узнать QModelIndex элемента на который мы перетаскиваем другой элемент, можно с помощью функции indexAt(event->position().toPoint()) представления QTreeViev вызываемой в переопр…