-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainwindow.h
80 lines (62 loc) · 1.61 KB
/
mainwindow.h
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <memory>
#include <vector>
#include <QMainWindow>
#include "virtualtreemodel/virtualtreemodel.h"
class Part {
public:
Part() : parent(nullptr) {}
Part(const Part &other) = delete;
Part(Part *parent, const QString &name) : parent(parent), name(name) {}
Part *parent;
QString name;
std::vector<std::unique_ptr<Part>> subParts;
Part *add(const QString &name)
{
auto part = new Part(this, name);
subParts.emplace_back(part);
return part;
}
void remove(Part *part)
{
auto it = std::find_if(subParts.begin(), subParts.end(),
[&](std::unique_ptr<Part>& p) { return p.get() == part; });
subParts.erase(it);
}
};
namespace Ui {
class MainWindow;
}
class VirtualPartAdapter : public VirtualModelAdapter
{
public:
VirtualPartAdapter(Part &root);
int getItemsCount(void *parent) override;
void * getItem(void *parent, int index) override;
QVariant data(void *item, int role) override;
void * getItemParent(void *item) override;
Part *getValue(void * data);
private:
Part &m_root;
};
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_actionAdd_group_triggered();
void on_actionRemove_current_triggered();
void on_actionRemove_model_triggered();
void on_actionAssign_adapter_triggered();
void on_actionRemove_adapter_triggered();
private:
Ui::MainWindow *ui;
Part root;
std::unique_ptr<VirtualPartAdapter> m_adapter;
std::unique_ptr<VirtualTreeModel> m_treeModel;
Part *currentPart();
};
#endif // MAINWINDOW_H