23#include "vendor/IconsFontAwesome5.h"
39 ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoTitleBar |
40 ImGuiWindowFlags_NoResize |
41 ImGuiWindowFlags_NoMove;
43 ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 50.0f);
44 ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 50.0f);
45 ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 50.0f);
46 ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
48 if (ImGui::Begin(
"Plus",
nullptr, window_flags)) {
53 if (ImGui::Button(ICON_FA_PLUS, ImVec2(50.75f, 50.75f))) {
54 show_menu = !show_menu;
68 ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoCollapse |
69 ImGuiWindowFlags_NoResize |
70 ImGuiWindowFlags_AlwaysAutoResize;
72 ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 10.0f);
73 ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 10.0f);
92 ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoTitleBar |
93 ImGuiWindowFlags_NoResize |
94 ImGuiWindowFlags_NoMove;
96 ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
98 if (ImGui::Begin(
"Tools", &
show_menu, window_flags)) {
103 auto menu_entry = [&](
auto icon,
const char *label,
auto &x) {
104 if (ImGui::Button(icon, ImVec2(50.75f, 50.75f))) {
111 menu_entry(ICON_FA_FOLDER_OPEN,
"Open file",
loader);
112 menu_entry(ICON_FA_SAVE,
"Save",
saver);
116 menu_entry(ICON_FA_SLIDERS_H,
"Scale data",
scaler);
117 menu_entry(ICON_FA_WRENCH,
"Training settings",
training_set);
118 menu_entry(ICON_FA_PALETTE,
"Color points",
color_set);
123 ImGui::PopStyleVar();
Storage of data of used algorithms and input events.
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding color settings widgets.
void render(State &state, ImGuiWindowFlags window_flags)
Renders open file dialog window.
void render(State &state, ImGuiWindowFlags window_flags)
Renders save file window, opens save file dialog window and calls save_data() if a directory was sele...
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding scale&transform widgets.
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding training settings widgets.
static void tooltip(const char *text)
ImGUI wrapper for setting tooltip.