<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
之前文章中介紹過在Qt-Widget和QML中如何使用委託代理機制(Model-View-Delegate),對應的文章連結分別如下所示:
在開發的過程中發現在QML中直接定義運算元據模型比較繁瑣費力,不如C++的資料模型好用。這裡就介紹一下如何在QML中呼叫C++定義的資料模型,實現資料模型的混合使用。
定義的C++資料模型和Qt-Widget中定義的資料模型相同。模型主要用來儲存本地圖片的ID的對應的圖片地址。
實現如下:
//picturemodel.h #ifndef PICTUREMODEL_H #define PICTUREMODEL_H #include <memory> #include <vector> #include <QAbstractListModel> #include <QUrl> class Picture { public: Picture(const QString & filePath = "") { mPictureUrl = QUrl::fromLocalFile(filePath); } Picture(const QUrl& fileUrl) { mPictureUrl = fileUrl; } int pictureId() const { return mPictureId; } void setPictureId(int pictureId) { mPictureId = pictureId; } QUrl pictureUrl() const { return mPictureUrl; } void setPictureUrl(const QUrl &pictureUrl) { mPictureUrl = pictureUrl; } private: int mPictureId; // 圖片ID QUrl mPictureUrl; //圖片的地址 }; class PictureModel : public QAbstractListModel { Q_OBJECT public: //自定義每個元素的資料型別 enum Roles { UrlRole = Qt::UserRole + 1, FilePathRole }; PictureModel(QObject* parent = 0); //向資料模型中新增單個資料 QModelIndex addPicture(const Picture& picture); Q_INVOKABLE void addPictureFromUrl(const QUrl& fileUrl); //模型的行數 int rowCount(const QModelIndex& parent = QModelIndex()) const override; //獲取某個元素的資料 QVariant data(const QModelIndex& index, int role) const override; //刪除某幾行資料 Q_INVOKABLE bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex()) override; //每個元素類別的名稱 QHash<int, QByteArray> roleNames() const override; //載入使用者圖片 Q_INVOKABLE void loadPictures(); //清空模型的中的資料,但不移除本地檔案資料 void clearPictures(); public slots: //清空模型,刪除本地檔案中的資料 void deleteAllPictures(); private: void resetPictures(); bool isIndexValid(const QModelIndex& index) const; private: std::unique_ptr<std::vector<std::unique_ptr<Picture>>> mPictures; }; #endif // PICTUREMODEL_H
//picturemodel.cpp #include "picturemodel.h" #include <QUrl> using namespace std; PictureModel::PictureModel(QObject* parent) : QAbstractListModel(parent), mPictures(new vector<unique_ptr<Picture>>()) { } QModelIndex PictureModel::addPicture(const Picture& picture) { int rows = rowCount(); beginInsertRows(QModelIndex(), rows, rows); unique_ptr<Picture>newPicture(new Picture(picture)); mPictures->push_back(move(newPicture)); endInsertRows(); return index(rows, 0); } void PictureModel::addPictureFromUrl(const QUrl& fileUrl) { addPicture(Picture(fileUrl)); } int PictureModel::rowCount(const QModelIndex& /*parent*/) const { return mPictures->size(); } QVariant PictureModel::data(const QModelIndex& index, int role) const { if (!isIndexValid(index)) { return QVariant(); } const Picture& picture = *mPictures->at(index.row()); switch (role) { //展示資料為圖片的名稱 case Qt::DisplayRole: return picture.pictureUrl().fileName(); break; //圖片的URL case Roles::UrlRole: return picture.pictureUrl(); break; //圖片地址 case Roles::FilePathRole: return picture.pictureUrl().toLocalFile(); break; default: return QVariant(); } } bool PictureModel::removeRows(int row, int count, const QModelIndex& parent) { if (row < 0 || row >= rowCount() || count < 0 || (row + count) > rowCount()) { return false; } beginRemoveRows(parent, row, row + count - 1); int countLeft = count; while(countLeft--) { const Picture& picture = *mPictures->at(row + countLeft); } mPictures->erase(mPictures->begin() + row, mPictures->begin() + row + count); endRemoveRows(); return true; } QHash<int, QByteArray> PictureModel::roleNames() const { QHash<int, QByteArray> roles; roles[Qt::DisplayRole] = "name"; roles[Roles::FilePathRole] = "filepath"; roles[Roles::UrlRole] = "url"; return roles; } void PictureModel::loadPictures() { beginResetModel(); endResetModel(); } void PictureModel::clearPictures() { resetPictures(); } void PictureModel::resetPictures() { beginResetModel(); mPictures.reset(new vector<unique_ptr<Picture>>()); endResetModel(); return; } void PictureModel::deleteAllPictures() { resetPictures(); } bool PictureModel::isIndexValid(const QModelIndex& index) const { if (index.row() < 0 || index.row() >= rowCount() || !index.isValid()) { return false; } return true; }
定義C++資料模型的時候有幾點需要注意:
1.如果想在QML中存取模型的某個方法的話需要在方法宣告的時候新增Q_INVOKABLE宏
Q_INVOKABLE void addPictureFromUrl(const QUrl& fileUrl);
2.在QML中通過每個元素類別的名稱來進行存取,對應的類別名稱的定義如下:
QHash<int, QByteArray> PictureModel::roleNames() const { QHash<int, QByteArray> roles; roles[Qt::DisplayRole] = "name"; roles[Roles::FilePathRole] = "filepath"; roles[Roles::UrlRole] = "url"; return roles; }
由於資料模型中包含圖片資料,為了便於在QML中存取圖片資源,新增圖片快取器。快取器繼承自QQuickImageProvider。對應的實現如下所示:
//PictureImageProvider.h #ifndef PICTUREIMAGEPROVIDER_H #define PICTUREIMAGEPROVIDER_H #include <QQuickImageProvider> #include <QCache> class PictureModel; class PictureImageProvider : public QQuickImageProvider { public: static const QSize THUMBNAIL_SIZE; PictureImageProvider(PictureModel* pictureModel); //請求圖片 QPixmap requestPixmap(const QString& id, QSize* size, const QSize& requestedSize) override; //獲取快取 QPixmap* pictureFromCache(const QString& filepath, const QString& pictureSize); private: //資料模型 PictureModel* mPictureModel; //圖片快取容器 QCache<QString, QPixmap> mPicturesCache; }; #endif // PICTUREIMAGEPROVIDER_H
//PictureImageProvider.cpp #include "PictureImageProvider.h" #include "PictureModel.h" //全螢幕顯示 const QString PICTURE_SIZE_FULL = "full"; //縮略顯示 const QString PICTURE_SIZE_THUMBNAIL = "thumbnail"; //縮略顯示的尺寸 const QSize PictureImageProvider::THUMBNAIL_SIZE = QSize(350, 350); PictureImageProvider::PictureImageProvider(PictureModel* pictureModel) : QQuickImageProvider(QQuickImageProvider::Pixmap), mPictureModel(pictureModel), mPicturesCache() { } QPixmap PictureImageProvider::requestPixmap(const QString& id, QSize* /*size*/, const QSize& /*requestedSize*/) { QStringList query = id.split('/'); if (!mPictureModel || query.size() < 2) { return QPixmap(); } //第幾個圖片資料 int rowId = query[0].toInt(); //顯示模式是縮略顯示還是全螢幕顯示 QString pictureSize = query[1]; QUrl fileUrl = mPictureModel->data(mPictureModel->index(rowId, 0), PictureModel::Roles::UrlRole).toUrl(); return *pictureFromCache(fileUrl.toLocalFile(), pictureSize); } QPixmap* PictureImageProvider::pictureFromCache(const QString& filepath, const QString& pictureSize) { QString key = QStringList{ pictureSize, filepath } .join("-"); //不包含圖片的時候建立新的快取 QPixmap* cachePicture = nullptr; if (!mPicturesCache.contains(key)) { QPixmap originalPicture(filepath); if (pictureSize == PICTURE_SIZE_THUMBNAIL) { cachePicture = new QPixmap(originalPicture .scaled(THUMBNAIL_SIZE, Qt::KeepAspectRatio, Qt::SmoothTransformation)); } else if (pictureSize == PICTURE_SIZE_FULL) { cachePicture = new QPixmap(originalPicture); } mPicturesCache.insert(key, cachePicture); } //包含的時候直接存取快取 else { cachePicture = mPicturesCache[key]; } return cachePicture; }
在QML引擎初始化的時候新增對應的資料模型和圖片快取器,對應的實現如下:
#include <QGuiApplication> #include <QQmlApplicationEngine> #include <QQmlContext> #include "picturemodel.h" #include "PictureImageProvider.h" int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); PictureModel pictureModel; QQmlApplicationEngine engine; QQmlContext* context = engine.rootContext(); //新增資料模型和圖片快取器 context->setContextProperty("pictureModel", &pictureModel); //圖片Provider的ID是"pictures" engine.addImageProvider("pictures", new PictureImageProvider(&pictureModel)); engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); if (engine.rootObjects().isEmpty()) return -1; return app.exec(); }
在QML中通過資料模型存取資料,通過圖片快取器存取對應的圖片資源,對應的實現如下:
//main.qml import QtQuick 2.8 import QtQuick.Dialogs 1.2 import QtQuick.Controls 2.0 import QtQuick.Layouts 1.3 import QtQuick.Window 2.2 Window { visible: true width: 640 height: 480 title: qsTr("QML-MVC") RowLayout { id:tool_layout //新增圖片的按鈕 ToolButton { background: Image { source: "qrc:/image/photo-add.svg" } onClicked: { dialog.open() } } //刪除圖片的按鈕 ToolButton { background: Image { source: "qrc:/image/photo-delete.svg" } onClicked: { pictureModel.removeRows(pictureListView.currentIndex,1) } } } //網格檢視 GridView { id: pictureListView model: pictureModel anchors.top:tool_layout.bottom width: parent.width; height: parent.height - tool_layout.height anchors.leftMargin: 10 anchors.rightMargin: 10 cellWidth : 300 cellHeight: 230 //對應的每個元素的代理 delegate: Rectangle { width: 290 height: 200 color: GridView.isCurrentItem?"#4d9cf8":"#ffffff" //選中顏色設定 Image { id: thumbnail anchors.fill: parent fillMode: Image.PreserveAspectFit cache: false //通過快取器存取圖片 //image://pictures/存取器的ID //index + "/thumbnail" 圖片索引和顯示模式 source: "image://pictures/" + index + "/thumbnail" } //存取圖片的名稱 Text { height: 30 anchors.top: thumbnail.bottom text: name font.pointSize: 16 anchors.horizontalCenter: parent.horizontalCenter } //滑鼠點選設定當前索引 MouseArea{ anchors.fill: parent onClicked: { pictureListView.currentIndex = index; } } } } //圖片選擇視窗 FileDialog { id: dialog title: "Select Pictures" folder: shortcuts.pictures onAccepted: { var pictureUrl = dialog.fileUrl pictureModel.addPictureFromUrl(pictureUrl) dialog.close() } } }
顯示效果如下圖所示:
到此這篇關於C++資料模型應用在QML委託代理機制中的文章就介紹到這了,更多相關C++資料模型內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45