// Copyright (C) 2023 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef MODELDATAMODEL_H #define MODELDATAMODEL_H #include #include #include class ModelDataModel : public QAbstractTableModel { Q_OBJECT public: explicit ModelDataModel(QObject *parent = nullptr); int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole); Qt::ItemFlags flags(const QModelIndex &index) const; void addMapping(const QString &color, const QRect &area); void clearMapping() { m_mapping.clear(); } private: QList *> m_data; QMultiHash m_mapping; int m_columnCount; int m_rowCount; }; #endif