-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtreemodel.hpp
167 lines (136 loc) · 6.09 KB
/
treemodel.hpp
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#ifndef TREEMODEL_HPP
#define TREEMODEL_HPP
#include <QAbstractItemModel>
namespace Utils {
void writeAssertLocation(const char *msg);
void dumpBacktrace(int maxdepth);
} // namespace Utils
#define QTC_ASSERT_STRINGIFY_HELPER(x) #x
#define QTC_ASSERT_STRINGIFY(x) QTC_ASSERT_STRINGIFY_HELPER(x)
#define QTC_ASSERT_STRING(cond) \
Utils::writeAssertLocation("\"" cond "\" in file " __FILE__ \
", line " QTC_ASSERT_STRINGIFY(__LINE__))
// The 'do {...} while (0)' idiom is not used for the main block here to be
// able to use 'break' and 'continue' as 'actions'.
#define QTC_ASSERT(cond, action) \
if (Q_LIKELY(cond)) { \
} else { \
QTC_ASSERT_STRING(#cond); \
action; \
} \
do { \
} while (0)
#define QTC_CHECK(cond) \
if (Q_LIKELY(cond)) { \
} else { \
QTC_ASSERT_STRING(#cond); \
} \
do { \
} while (0)
#define QTC_GUARD(cond) ((Q_LIKELY(cond)) ? true : (QTC_ASSERT_STRING(#cond), false))
class BaseTreeModel;
class TreeItem
{
public:
TreeItem();
virtual ~TreeItem();
[[nodiscard]] virtual auto data(int column, int role) const -> QVariant;
virtual auto setData(int column, const QVariant &data, int role) -> bool;
[[nodiscard]] virtual Qt::ItemFlags flags(int column) const;
[[nodiscard]] virtual auto hasChildren() const -> bool;
[[nodiscard]] virtual auto canFetchMore() const -> bool;
virtual void fetchMore() {}
[[nodiscard]] auto parent() const -> TreeItem * { return m_parent; }
void prependChild(TreeItem *item);
void appendChild(TreeItem *item);
void insertChild(int pos, TreeItem *item);
void insertOrderedChild(TreeItem *item,
const std::function<bool(const TreeItem *, const TreeItem *)> &cmp);
void removeChildAt(int pos);
void removeChildren();
void sortChildren(const std::function<bool(const TreeItem *, const TreeItem *)> &cmp);
void update();
void updateAll();
void updateColumn(int column);
void expand();
void collapse();
[[nodiscard]] auto firstChild() const -> TreeItem *;
[[nodiscard]] auto lastChild() const -> TreeItem *;
[[nodiscard]] auto level() const -> int;
using const_iterator = QVector<TreeItem *>::const_iterator;
using value_type = TreeItem *;
[[nodiscard]] auto childCount() const -> int { return m_children.size(); }
[[nodiscard]] auto indexInParent() const -> int;
[[nodiscard]] auto childAt(int index) const -> TreeItem *;
auto indexOf(const TreeItem *item) const -> int;
[[nodiscard]] const_iterator begin() const { return m_children.begin(); }
[[nodiscard]] const_iterator end() const { return m_children.end(); }
[[nodiscard]] auto index() const -> QModelIndex;
[[nodiscard]] auto model() const -> QAbstractItemModel *;
void forSelectedChildren(const std::function<bool(TreeItem *)> &pred) const;
void forAllChildren(const std::function<void(TreeItem *)> &pred) const;
[[nodiscard]] auto findAnyChild(const std::function<bool(TreeItem *)> &pred) const
-> TreeItem *;
// like findAnyChild() but processes children in exact reverse order
// (bottom to top, most inner children first)
[[nodiscard]] auto reverseFindAnyChild(const std::function<bool(TreeItem *)> &pred) const
-> TreeItem *;
// Levels are 1-based: Child at Level 1 is an immediate child.
void forChildrenAtLevel(int level, const std::function<void(TreeItem *)> &pred) const;
[[nodiscard]] auto findChildAtLevel(int level, const std::function<bool(TreeItem *)> &pred) const
-> TreeItem *;
private:
TreeItem(const TreeItem &) = delete;
void operator=(const TreeItem &) = delete;
void clear();
void removeItemAt(int pos);
void propagateModel(BaseTreeModel *m);
TreeItem *m_parent = nullptr; // Not owned.
BaseTreeModel *m_model = nullptr; // Not owned.
QVector<TreeItem *> m_children; // Owned.
friend class BaseTreeModel;
};
// A general purpose multi-level model where each item can have its
// own (TreeItem-derived) type.
class BaseTreeModel : public QAbstractItemModel
{
Q_OBJECT
protected:
explicit BaseTreeModel(QObject *parent = nullptr);
explicit BaseTreeModel(TreeItem *root, QObject *parent = nullptr);
~BaseTreeModel() override;
void setHeader(const QStringList &displays);
void setHeaderToolTip(const QStringList &tips);
void clear();
[[nodiscard]] auto rootItem() const -> TreeItem *;
void setRootItem(TreeItem *item);
[[nodiscard]] auto itemForIndex(const QModelIndex &) const -> TreeItem *;
auto indexForItem(const TreeItem *needle) const -> QModelIndex;
[[nodiscard]] auto rowCount(const QModelIndex &idx = QModelIndex()) const -> int override;
[[nodiscard]] auto columnCount(const QModelIndex &idx) const -> int override;
auto setData(const QModelIndex &idx, const QVariant &data, int role) -> bool override;
[[nodiscard]] auto data(const QModelIndex &idx, int role) const -> QVariant override;
[[nodiscard]] auto index(int, int, const QModelIndex &idx = QModelIndex()) const
-> QModelIndex override;
[[nodiscard]] auto parent(const QModelIndex &idx) const -> QModelIndex override;
[[nodiscard]] auto sibling(int row, int column, const QModelIndex &idx) const
-> QModelIndex override;
[[nodiscard]] Qt::ItemFlags flags(const QModelIndex &idx) const override;
[[nodiscard]] auto headerData(int section, Qt::Orientation orientation, int role) const
-> QVariant override;
[[nodiscard]] auto hasChildren(const QModelIndex &idx) const -> bool override;
[[nodiscard]] auto canFetchMore(const QModelIndex &idx) const -> bool override;
void fetchMore(const QModelIndex &idx) override;
auto takeItem(TreeItem *item) -> TreeItem *; // item is not destroyed.
void destroyItem(TreeItem *item); // item is destroyed.
signals:
void requestExpansion(const QModelIndex &);
void requestCollapse(const QModelIndex &);
protected:
friend class TreeItem;
TreeItem *m_root; // Owned.
QStringList m_header;
QStringList m_headerToolTip;
int m_columnCount;
};
#endif // TREEMODEL_HPP