File: dbobjlistmodel.h

package info (click to toggle)
sqlitestudio 3.4.17-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 61,252 kB
  • sloc: ansic: 403,094; cpp: 122,803; yacc: 2,619; java: 992; tcl: 495; sh: 440; xml: 426; makefile: 19
file content (60 lines) | stat: -rw-r--r-- 1,452 bytes parent folder | download | duplicates (2)
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