IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> Qt MVC model 加载 大量数据的性能优化 -> 正文阅读

[PHP知识库]Qt MVC model 加载 大量数据的性能优化

作者:recommend-item-box type_blog clearfix

Qt MVC model 加载 大量数据的性能优化

自定义 canFetchMore() 、fetchMore()

canFetchMore()函数的作用是:检查父节点是否有更多可用的数据,并相应地返回true或false。fetchMore()函数的作用是:根据指定的父对象获取数据。例如,可以在涉及增量数据的数据库查询中组合这两个函数,以填充QAbstractItemModel。我们重新实现canFetchMore()来指示是否有更多的数据需要获取,并根据需要fetchMore()来填充模型。
例如动态填充树模型,当树模型中的一个分支展开时,我们将重新实现。
如果fetchMore()的重新实现向模型中添加了行,则需要调用beginInsertRows()和endInsertRows()。同样,canFetchMore()和fetchMore()都必须被重新实现。

filelistmodel.h

#ifndef FILELISTMODEL_H
#define FILELISTMODEL_H

#include <QAbstractListModel>
#include <QList>
#include <QStringList>

//![0]
class FileListModel : public QAbstractListModel
{
    Q_OBJECT

public:
    FileListModel(QObject *parent = 0);

    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;


signals:
    ///通知外部,新获取了多少行
    void numberPopulated(int number);

public slots:
    ///设置模型数据
    void setDirPath(const QString &path);
    ///设置 fetchMore每次加载的最大数据行数
    void setPAGE_ITEM_COUNT(int value);

protected:
    bool canFetchMore(const QModelIndex &parent) const override;
    void fetchMore(const QModelIndex &parent) override;

private:
    QStringList fileList;
    int fileCount;

    ///fetchMore每次加载的最大数据行数
    int PAGE_ITEM_COUNT;
};
//![0]

#endif // FILELISTMODEL_H

filelistmodel.cpp

#include "filelistmodel.h"

#include <QApplication>
#include <QBrush>
#include <QDir>
#include <QPalette>




FileListModel::FileListModel(QObject *parent)
    : QAbstractListModel(parent)
    ,PAGE_ITEM_COUNT(5)
{
}

//![4]
int FileListModel::rowCount(const QModelIndex & /* parent */) const
{
    return fileCount;
}

QVariant FileListModel::data(const QModelIndex &index, int role) const
{
    if (!index.isValid())
        return QVariant();

    if (index.row() >= fileList.size() || index.row() < 0)
        return QVariant();

    if (role == Qt::DisplayRole) {
        return fileList.at(index.row());
    } else if (role == Qt::BackgroundRole) {
        int batch = (index.row() / 100) % 2;
        if (batch == 0)
            return qApp->palette().base();
        else
            return qApp->palette().alternateBase();
    }
    return QVariant();
}
//![4]

//![1]
bool FileListModel::canFetchMore(const QModelIndex & /* index */) const
{
    if (fileCount < fileList.size())
        return true;
    else
        return false;
}
//![1]

//![2]
void FileListModel::fetchMore(const QModelIndex & /* index */)
{
    int remainder = fileList.size() - fileCount;
    int itemsToFetch = qMin(PAGE_ITEM_COUNT, remainder);

    if (itemsToFetch <= 0)
        return;

    beginInsertRows(QModelIndex(), fileCount, fileCount+itemsToFetch-1);

    fileCount += itemsToFetch;

    endInsertRows();

    emit numberPopulated(itemsToFetch);
}


void FileListModel::setPAGE_ITEM_COUNT(int value)
{
    PAGE_ITEM_COUNT = value;
}
//![2]

//![0]
void FileListModel::setDirPath(const QString &path)
{
    QDir dir(path);

    beginResetModel();
    fileList = dir.entryList();
    fileCount = 0;
    endResetModel();
}
//![0]


使用

    FileListModel *model = new FileListModel(this);
    model->setDirPath(QLibraryInfo::location(QLibraryInfo::PrefixPath));

    //一次fetchMore最大加载数量
    QLabel *lb = new QLabel(tr("Fetch Max Count:"));
    QSpinBox *sbMaxCount = new QSpinBox();

    QLabel *label = new QLabel(tr("&Directory:"));
    QLineEdit *lineEdit = new QLineEdit;
    label->setBuddy(lineEdit);

    QListView *view = new QListView;
    view->setModel(model);

    logViewer = new QTextBrowser;
    logViewer->setSizePolicy(QSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred));

    connect(sbMaxCount, QOverload<int>::of(&QSpinBox::valueChanged),
            model, &FileListModel::setPAGE_ITEM_COUNT);
    sbMaxCount->setValue(3);

    connect(lineEdit, &QLineEdit::textChanged,
            model, &FileListModel::setDirPath);
    connect(lineEdit, &QLineEdit::textChanged,
            logViewer, &QTextEdit::clear);
    connect(model, &FileListModel::numberPopulated,
            this, [&](int number)
    {
        logViewer->append(tr("%1 items added.").arg(number));
    });

    QGridLayout *layout = new QGridLayout;
    layout->addWidget(lb,0,0);
    layout->addWidget(sbMaxCount,0,1);
    layout->addWidget(label, 1, 0);
    layout->addWidget(lineEdit, 1, 1);
    layout->addWidget(view, 2, 0, 1, 2);
    layout->addWidget(logViewer, 3, 0, 1, 2);

    setLayout(layout);
    setWindowTitle(tr("Fetch More Example"));

说明

当滑动滚动条,模型还没完全加载数据,继续加载显示
在这里插入图片描述

  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2021-09-03 11:40:28  更:2021-09-03 11:42:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 10:25:33-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码