More case fixes of filenames.

This commit is contained in:
eelke 2017-02-12 15:51:36 +01:00
parent 20af12535e
commit e71ef2e6df
41 changed files with 258 additions and 123 deletions

23
src/QueryResultModel.h Normal file
View file

@ -0,0 +1,23 @@
#ifndef QUERYRESULTMODEL_H
#define QUERYRESULTMODEL_H
#include <QAbstractTableModel>
#include "PgsqlConn.h"
class QueryResultModel : public QAbstractTableModel
{
Q_OBJECT
public:
QueryResultModel(QObject *parent, std::shared_ptr<Pgsql::Result> r);
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;
virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
// virtual Qt::ItemFlags flags(const QModelIndex &index) const override;
private:
std::shared_ptr<Pgsql::Result> result;
};
#endif // QUERYRESULTMODEL_H