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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#ifndef DBOBJLISTMODEL_H
#define DBOBJLISTMODEL_H
#include "guiSQLiteStudio_global.h"
#include <QAbstractListModel>
class Db;
class GUI_API_EXPORT DbObjListModel : public QAbstractListModel
{
Q_OBJECT
public:
enum class SortMode
{
LikeInDb,
Alphabetical,
AlphabeticalCaseInsensitive
};
enum class ObjectType
{
TABLE,
INDEX,
TRIGGER,
VIEW,
null
};
explicit DbObjListModel(QObject *parent = 0);
QVariant data(const QModelIndex & index, int role) const;
int rowCount(const QModelIndex & parent = QModelIndex()) const;
QModelIndex sibling(int row, int column, const QModelIndex & idx) const;
Db* getDb() const;
void setDb(Db* value);
SortMode getSortMode() const;
void setSortMode(const SortMode& value);
ObjectType getType() const;
void setType(const ObjectType& value);
bool getIncludeSystemObjects() const;
void setIncludeSystemObjects(bool value);
private:
void updateList();
QString typeString() const;
ObjectType type = ObjectType::null;
Db* db = nullptr;
SortMode sortMode = SortMode::LikeInDb;
QStringList objectList;
QStringList unsortedObjectList;
bool includeSystemObjects = true;
};
#endif // DBOBJLISTMODEL_H
|