Nut/src/nut/models/sqlmodel.h

79 lines
2.2 KiB
C
Raw Normal View History

2018-02-13 23:39:21 +08:00
/**************************************************************************
**
** This file is part of Nut project.
** https://github.com/HamedMasafi/Nut
**
** Nut is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** Nut is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public License
** along with Nut. If not, see <http://www.gnu.org/licenses/>.
**
**************************************************************************/
#ifndef SQLMODEL_H
#define SQLMODEL_H
#include <QtCore/QAbstractTableModel>
2020-07-29 22:11:19 +08:00
#include <QtCore/QExplicitlySharedDataPointer>
#include <QtCore/QList>
2020-08-08 15:29:16 +08:00
#include <QtNut/nut_global.h>
2018-02-13 23:39:21 +08:00
NUT_BEGIN_NAMESPACE
class Database;
class AbstractTableSet;
2018-02-13 23:39:21 +08:00
class Table;
class TableModel;
2020-08-08 15:29:16 +08:00
class SqlModelPrivate;
2019-06-19 00:11:14 +08:00
class NUT_EXPORT SqlModel : public QAbstractTableModel
2018-02-13 23:39:21 +08:00
{
Q_OBJECT
2020-08-08 15:29:16 +08:00
SqlModelPrivate *d_ptr;
Q_DECLARE_PRIVATE(SqlModel)
2019-06-19 00:11:14 +08:00
2018-02-13 23:39:21 +08:00
public:
2019-06-19 00:11:14 +08:00
// explicit SqlModel(Query *q);
explicit SqlModel(Database *database, AbstractTableSet *tableSet, QObject *parent = Q_NULLPTR);
2018-02-13 23:39:21 +08:00
int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const;
2019-06-19 00:11:14 +08:00
template<class T>
void setTable(RowList<T> rows);
void setRows(RowList<Table> rows);
void append(Row<Table> table);
// void append(Table *table);
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
Row<Table> at(const int &i) const;
2019-06-19 00:11:14 +08:00
void setRenderer(const std::function<QVariant (int, QVariant)> &renderer);
2021-03-14 16:42:04 +08:00
Q_SIGNALS:
2019-06-19 00:11:14 +08:00
void beforeShowText(int col, QVariant &value);
2018-02-13 23:39:21 +08:00
};
2019-06-19 00:11:14 +08:00
template<class T>
Q_OUTOFLINE_TEMPLATE void SqlModel::setTable(RowList<T> rows)
{
RowList<Table> tab;
2021-03-14 16:42:04 +08:00
Q_FOREACH (auto t, rows)
2019-06-19 00:11:14 +08:00
tab.append(t);
setRows(tab);
}
2018-02-13 23:39:21 +08:00
NUT_END_NAMESPACE
#endif // SQLMODEL_H