Qt5 - 在 QML TableView 中显示动态数据模型

Posted

技术标签:

【中文标题】Qt5 - 在 QML TableView 中显示动态数据模型【英文标题】:Qt5 - Display dynamic Data Model in QML TableView 【发布时间】:2014-01-23 02:20:35 【问题描述】:

我正在为 GUI 开发一个跟踪窗口。我在 QML 端使用 TableView 元素来显示将不断更新的数据。如何用数据填充此元素?元素的数量以及每个元素的数据每隔几毫秒就会发生变化。

我认为信号/插槽实现会是理想的,当数据发生变化时,会产生一个触发插槽函数以更新 TableView 中显示的值的信号?类似的东西。

提前致谢!

main.qml

import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import QtQuick.Dialogs 1.1
import QtQuick 2.1

....
TableView 
                anchors.fill: parent
                id: traceTable
                //table data comes from a model
                model: traceTableModel
                //Component.onCompleted: classInstance.popAndDisplayMsg(classInstance)
                TableViewColumn  role: "index"; title: "Index";  width: 0.25 * mainWindow.width; 
                TableViewColumn  role: "type"; title: "Type"; width: 0.25 * mainWindow.width; 
                TableViewColumn  role: "uid"; title: "ID"; width: 0.25 * mainWindow.width; 
                TableViewColumn  role: "timestamp"; title: "Timestamp"; width: 0.25 * mainWindow.width; 


            
....

main.cpp

#include "class_header.hpp"
#include <QtQuick/QQuickView>
#include <QGuiApplication>
#include <QQmlContext>

int main(int argc, char *argv[])

    QGuiApplication app(argc, argv);

    QQuickView view;

    class_name instance;

    view.rootContext()->setContextProperty("classInstance", &instance);

    view.setResizeMode(QQuickView::SizeRootObjectToView);
    view.setSource(QUrl("qml/main.qml"));
    view.show();
    return app.exec();

class_header.hpp

#ifndef class_name_HPP
#define class_name_HPP

#include <QtQuick/QQuickItem>
#include <polysync_core.h>
#include <glib.h>
#include <QString>
#include <QDebug>


class class_name : public QQuickItem

    Q_OBJECT
    //Maybe some Q_Properties here?

    public:

        //constructor
        class_name(QQuickItem *parent = 0);
        //deconstructor
        ~class_name();

    signals:
        void dataChanged();

    public slots:
        int updateInfo(//pass some data);

;

#endif // class_name_HPP

【问题讨论】:

什么是traceTableModel?我会在 C++(QAbstractItemModel 和子类)中将其作为模型并相应地从 C++ 进行更新。 弗兰克,我已经阅读了一些关于 QAbstractItemModel 的内容。我会再检查一下并尝试让它工作。如果你有任何好的例子,请告诉我。 【参考方案1】:

您对 QML 模型的使用很奇怪。您不想对每一列都使用自定义角色。这是没有意义的。您也不需要自定义 QQuickItem 类。

基本流程是:

    正确实现派生自QAbstractListModelQAbstractTableModel 的类。

    将此类的实例绑定到 QML 视图的模型。

这里有完整的(如编译和运行)参考供您阅读:

Qml 2.0 TableView with QAbstractItemModel and Context Menu

How to Use Models with QML?

Remove rows from QAbstractListModel

【讨论】:

以上是关于Qt5 - 在 QML TableView 中显示动态数据模型的主要内容,如果未能解决你的问题,请参考以下文章

QML QT导入CSV文件并使用python在Tableview中显示

QML Tableview显示选定行的值

Qt5。在 QML 中嵌入 QWidget 对象

检测鼠标光标何时在 Qt5 和 QML 中的不规则形状图片上

QML TableView 模型静默失败?

带有委托复选框的 QML TableView 无法显示