BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_menu.cpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 * Sona Molnarova
5 *
6 * BlosSOM is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#include "ui_menu.h"
21
22#include "imgui.h"
23#include "vendor/IconsFontAwesome5.h"
24
25#include "utils_imgui.hpp"
26
27constexpr float WINDOW_PADDING = 100.0f;
28constexpr float TOOLS_HEIGHT = 271.0f;
29constexpr float WINDOW_WIDTH = 50.0f;
30
32 : show_menu(false)
33{
34}
35
36static void
37draw_menu_button(bool &show_menu, int fb_width, int fb_height)
38{
39 ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoTitleBar |
40 ImGuiWindowFlags_NoResize |
41 ImGuiWindowFlags_NoMove;
42
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));
47
48 if (ImGui::Begin("Plus", nullptr, window_flags)) {
49 ImGui::SetWindowPos(
50 ImVec2(fb_width - WINDOW_PADDING, fb_height - WINDOW_PADDING));
51 ImGui::SetWindowSize(ImVec2(WINDOW_WIDTH, WINDOW_WIDTH));
52
53 if (ImGui::Button(ICON_FA_PLUS, ImVec2(50.75f, 50.75f))) {
54 show_menu = !show_menu;
55 }
56
57 ImGui::End();
58 }
59 ImGui::PopStyleVar();
60 ImGui::PopStyleVar();
61 ImGui::PopStyleVar();
62 ImGui::PopStyleVar();
63}
64
65void
66UiMenu::render(int fb_width, int fb_height, State &state)
67{
68 ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoCollapse |
69 ImGuiWindowFlags_NoResize |
70 ImGuiWindowFlags_AlwaysAutoResize;
71
72 ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 10.0f);
73 ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 10.0f);
74
75 draw_menu_button(show_menu, fb_width, fb_height);
76 if (show_menu)
77 draw_menu_window(fb_width, fb_height);
78
79 loader.render(state, window_flags);
80 saver.render(state, window_flags);
81 scaler.render(state, window_flags);
82 training_set.render(state, window_flags);
83 color_set.render(state, window_flags);
84
85 ImGui::PopStyleVar();
86 ImGui::PopStyleVar();
87}
88
89void
90UiMenu::draw_menu_window(int fb_width, int fb_height)
91{
92 ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoTitleBar |
93 ImGuiWindowFlags_NoResize |
94 ImGuiWindowFlags_NoMove;
95
96 ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
97
98 if (ImGui::Begin("Tools", &show_menu, window_flags)) {
99 ImGui::SetWindowPos(ImVec2(fb_width - WINDOW_PADDING,
100 fb_height - WINDOW_PADDING - TOOLS_HEIGHT));
101 ImGui::SetWindowSize(ImVec2(WINDOW_WIDTH, TOOLS_HEIGHT));
102
103 auto menu_entry = [&](auto icon, const char *label, auto &x) {
104 if (ImGui::Button(icon, ImVec2(50.75f, 50.75f))) {
105 x.show();
106 show_menu = false;
107 }
108 tooltip(label);
109 };
110
111 menu_entry(ICON_FA_FOLDER_OPEN, "Open file", loader);
112 menu_entry(ICON_FA_SAVE, "Save", saver);
113
114 ImGui::Separator();
115
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);
119
120 ImGui::End();
121 }
122
123 ImGui::PopStyleVar();
124}
Storage of data of used algorithms and input events.
Definition: state.h:50
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding color settings widgets.
Definition: ui_color.cpp:34
void render(State &state, ImGuiWindowFlags window_flags)
Renders open file dialog window.
Definition: ui_load.cpp:33
bool show_menu
If the main menu window should be rendered.
Definition: ui_menu.h:73
void draw_menu_window(int fb_width, int fb_height)
Draws main menu window.
Definition: ui_menu.cpp:90
UiTrainingSettings training_set
Training settings window handler.
Definition: ui_menu.h:45
UiMenu()
Definition: ui_menu.cpp:31
UiSaver saver
Save file dialog window handler.
Definition: ui_menu.h:41
UiLoader loader
Open file dialog window handler.
Definition: ui_menu.h:39
UiColorSettings color_set
Color setting window handler.
Definition: ui_menu.h:47
UiScaler scaler
Scale&transform data window handler.
Definition: ui_menu.h:43
void render(int fb_width, int fb_height, State &state)
Renders main menu window, the plus button and currently opened menu item windows.
Definition: ui_menu.cpp:66
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...
Definition: ui_save.cpp:46
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding scale&transform widgets.
Definition: ui_scale.cpp:30
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding training settings widgets.
Definition: ui_train.cpp:30
constexpr float WINDOW_WIDTH
Definition: ui_menu.cpp:29
static void draw_menu_button(bool &show_menu, int fb_width, int fb_height)
Definition: ui_menu.cpp:37
constexpr float WINDOW_PADDING
Definition: ui_menu.cpp:27
constexpr float TOOLS_HEIGHT
Definition: ui_menu.cpp:28
static void tooltip(const char *text)
ImGUI wrapper for setting tooltip.
Definition: utils_imgui.hpp:36