customtablemodel.h
53 lines
| 1.8 KiB
| text/x-c
|
CLexer
Titta Heikkala
|
r2845 | /****************************************************************************** | ||
Mika Salmela
|
r2548 | ** | ||
Titta Heikkala
|
r2845 | ** Copyright (C) 2015 The Qt Company Ltd. | ||
** Contact: http://www.qt.io/licensing/ | ||||
Mika Salmela
|
r2548 | ** | ||
Titta Heikkala
|
r2740 | ** This file is part of the Qt Charts module. | ||
Mika Salmela
|
r2548 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_BEGIN_LICENSE:COMM$ | ||
Mika Salmela
|
r2548 | ** | ||
Titta Heikkala
|
r2845 | ** Commercial License Usage | ||
** Licensees holding valid commercial Qt licenses may use this file in | ||||
** accordance with the commercial license agreement provided with the | ||||
** Software or, alternatively, in accordance with the terms contained in | ||||
** a written agreement between you and The Qt Company. For licensing terms | ||||
** and conditions see http://www.qt.io/terms-conditions. For further | ||||
** information use the contact form at http://www.qt.io/contact-us. | ||||
Mika Salmela
|
r2548 | ** | ||
Titta Heikkala
|
r2845 | ** $QT_END_LICENSE$ | ||
** | ||||
******************************************************************************/ | ||||
Mika Salmela
|
r2548 | |||
#ifndef CUSTOMTABLEMODEL_H | ||||
#define CUSTOMTABLEMODEL_H | ||||
Titta Heikkala
|
r2714 | #include <QtCore/QAbstractTableModel> | ||
#include <QtCore/QHash> | ||||
#include <QtCore/QRect> | ||||
Mika Salmela
|
r2548 | |||
class CustomTableModel : public QAbstractTableModel | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
explicit CustomTableModel(QObject *parent = 0); | ||||
Miikka Heikkinen
|
r2733 | virtual ~CustomTableModel(); | ||
Mika Salmela
|
r2548 | |||
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<QVector<qreal> *> m_data; | ||||
QHash<QString, QRect> m_mapping; | ||||
int m_columnCount; | ||||
int m_rowCount; | ||||
}; | ||||
#endif // CUSTOMTABLEMODEL_H | ||||