// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef REGISTERMODEL_H #define REGISTERMODEL_H #include class RegisterModel : public QAbstractTableModel { Q_OBJECT public: RegisterModel(QObject *parent = nullptr); int rowCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QVariant headerData(int section, Qt::Orientation orientation, int role) const override; bool setData(const QModelIndex &index, const QVariant &value, int role) override; Qt::ItemFlags flags(const QModelIndex &index) const override; public slots: void setStartAddress(int address); void setNumberOfValues(const QString &number); signals: void updateViewport(); public: int m_number = 0; int m_address = 0; QList m_registers; }; #endif // REGISTERMODEL_H