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
|
#pragma once
#include <Corrade/Containers/StringView.h>
#include <Magnum/Math/Color.h>
#include <imgui.h>
#include <imgui_internal.h>
namespace floormat::imgui {
struct raii_wrapper final
{
using F = void(*)(void);
raii_wrapper(F fn) : dtor{fn} {}
raii_wrapper() = default;
~raii_wrapper() { if (dtor) dtor(); }
raii_wrapper(const raii_wrapper&) = delete;
raii_wrapper& operator=(const raii_wrapper&) = delete;
raii_wrapper& operator=(raii_wrapper&&) = delete;
raii_wrapper(raii_wrapper&& other) noexcept : dtor{other.dtor} { other.dtor = nullptr; }
inline operator bool() const noexcept { return dtor != nullptr; }
F dtor = nullptr;
};
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper begin_window(Containers::StringView name = {}, ImGuiWindowFlags_ flags = ImGuiWindowFlags_None)
{
if (name.isEmpty())
name = "floormat editor";
if (ImGui::Begin(name.data(), nullptr, flags))
return {&ImGui::End};
else
return {};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper begin_main_menu()
{
if (ImGui::BeginMainMenuBar())
return {&ImGui::EndMainMenuBar};
else
return {};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper begin_menu(Containers::StringView name, bool enabled = true)
{
if (ImGui::BeginMenu(name.data(), enabled))
return {&ImGui::EndMenu};
else
return {};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper begin_list_box(Containers::StringView name, ImVec2 size = {})
{
if (ImGui::BeginListBox(name.data(), size))
return {&ImGui::EndListBox};
else
return {};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper tree_node(Containers::StringView name, ImGuiTreeNodeFlags_ flags = ImGuiTreeNodeFlags_None)
{
if (ImGui::TreeNodeEx(name.data(), flags))
return {&ImGui::TreePop};
else
return {};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper push_style_var(ImGuiStyleVar_ var, Vector2 value)
{
ImGui::PushStyleVar(var, {value[0], value[1]});
return {[]{ ImGui::PopStyleVar(); }};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper push_style_var(ImGuiStyleVar_ var, float value)
{
ImGui::PushStyleVar(var, value);
return {[]{ ImGui::PopStyleVar(); }};
}
[[nodiscard]] [[maybe_unused]] static inline raii_wrapper push_style_color(ImGuiCol_ var, const Color4& value)
{
ImGui::PushStyleColor(var, {value[0], value[1], value[2], value[3]});
return {[]{ ImGui::PopStyleColor(); }};
}
[[maybe_unused]] static inline void text(const char* str, std::size_t len, ImGuiTextFlags_ flags = ImGuiTextFlags_NoWidthForLargeClippedText)
{
ImGui::TextEx(str, str + len, flags);
}
template<std::size_t N>
[[maybe_unused]] static inline void text(const char (&buf)[N], ImGuiTextFlags_ flags = ImGuiTextFlags_NoWidthForLargeClippedText)
{
static_assert(N > 0);
ImGui::TextEx(buf, buf + N - 1, flags);
}
struct style_saver final
{
style_saver() : style{ImGui::GetStyle()} {}
~style_saver() { ImGui::GetStyle() = style; }
private:
ImGuiStyle style;
};
struct font_saver final
{
font_saver(float size) : font_saver{*ImGui::GetCurrentContext(), size} {}
~font_saver();
private:
font_saver(ImGuiContext& ctx, float size);
float font_size, font_base_size;
};
font_saver::~font_saver()
{
auto& ctx = *ImGui::GetCurrentContext();
ctx.FontSize = font_size;
ctx.FontBaseSize = font_base_size;
}
font_saver::font_saver(ImGuiContext& ctx, float size) :
font_size{ctx.FontSize}, font_base_size{ctx.FontBaseSize}
{
ctx.FontSize = size;
ctx.FontBaseSize = size;
}
} // namespace floormat::imgui
|