summaryrefslogtreecommitdiffstats
path: root/examples/charts/chartsgallery/barmodelmappermodel.h
blob: 84d4664e1a90b1cf1c6a109be86ee4a826f73eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef BARMODELMAPPERMODEL_H
#define BARMODELMAPPERMODEL_H

#include <QAbstractTableModel>
#include <QMultiHash>
#include <QRect>

class BarModelMapperModel : public QAbstractTableModel
{
    Q_OBJECT
public:
    explicit BarModelMapperModel(QObject *parent = nullptr);
    virtual ~BarModelMapperModel();

    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(QString color, QRect area);
    void clearMapping() { m_mapping.clear(); }

private:
    QList<QList<qreal> *> m_data;
    QMultiHash<QString, QRect> m_mapping;
    int m_columnCount;
    int m_rowCount;
};

#endif