blob: 6f5b04803d458a4fad58b1a95f5af7165138ae0f (
plain)
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
|
#include "QtImGui.h"
#include "ImGuiRenderer.h"
#include <QWindow>
#ifdef QT_WIDGETS_LIB
#include <QWidget>
#endif
namespace QtImGui {
#ifdef QT_WIDGETS_LIB
namespace {
class QWidgetWindowWrapper : public WindowWrapper {
public:
QWidgetWindowWrapper(QWidget *w) : w(w) {}
void installEventFilter(QObject *object) override {
return w->installEventFilter(object);
}
QSize size() const override {
return w->size();
}
qreal devicePixelRatio() const override {
return w->devicePixelRatio();
}
bool isActive() const override {
return w->isActiveWindow();
}
QPoint mapFromGlobal(const QPoint &p) const override {
return w->mapFromGlobal(p);
}
private:
QWidget *w;
};
}
void initialize(QWidget *window) {
ImGuiRenderer::instance()->initialize(new QWidgetWindowWrapper(window));
}
#endif
namespace {
class QWindowWindowWrapper : public WindowWrapper {
public:
QWindowWindowWrapper(QWindow *w) : w(w) {}
void installEventFilter(QObject *object) override {
return w->installEventFilter(object);
}
QSize size() const override {
return w->size();
}
qreal devicePixelRatio() const override {
return w->devicePixelRatio();
}
bool isActive() const override {
return w->isActive();
}
QPoint mapFromGlobal(const QPoint &p) const override {
return w->mapFromGlobal(p);
}
private:
QWindow *w;
};
}
void initialize(QWindow *window) {
ImGuiRenderer::instance()->initialize(new QWindowWindowWrapper(window));
}
void newFrame() {
ImGuiRenderer::instance()->newFrame();
}
}
|