BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_menu.h
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#ifndef UI_MENU_H
21#define UI_MENU_H
22
23#include "state.h"
24#include "ui_color.h"
25#include "ui_load.h"
26#include "ui_save.h"
27#include "ui_scale.h"
28#include "ui_train.h"
29
30/**
31 * @brief ImGUI handler for rendering main menu window.
32 *
33 * It also holds handlers of all menu item windows.
34 *
35 */
36struct UiMenu
37{
38 /** Open file dialog window handler. */
40 /** Save file dialog window handler.*/
42 /** Scale&transform data window handler. */
44 /** Training settings window handler. */
46 /** Color setting window handler. */
48
49 UiMenu();
50 /**
51 * @brief Renders main menu window, the `plus` button and currently opened
52 * menu item windows.
53 *
54 * @param app Application context.
55 */
56 void render(int fb_width, int fb_height, State &state);
57 /**
58 * @brief Closes main menu window.
59 *
60 */
61 void close_menu() { show_menu = false; }
62
63private:
64 /**
65 * @brief Draws main menu window.
66 *
67 * @param window_size Size of the main application window used for placement
68 * of the main menu window.
69 */
70 void draw_menu_window(int fb_width, int fb_height);
71
72 /** If the main menu window should be rendered. */
74};
75
76#endif
Storage of data of used algorithms and input events.
Definition: state.h:50
ImGUI handler for rendering the color settings window.
Definition: ui_color.h:31
ImGUI handler for rendering the open file dialog window.
Definition: ui_load.h:34
ImGUI handler for rendering main menu window.
Definition: ui_menu.h:37
bool show_menu
If the main menu window should be rendered.
Definition: ui_menu.h:73
void close_menu()
Closes main menu window.
Definition: ui_menu.h:61
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
ImGUI handler for rendering the save file window.
Definition: ui_save.h:36
ImGUI handler for rendering the scale&transform window.
Definition: ui_scale.h:32
ImGUI handler for rendering the training settings window.
Definition: ui_train.h:31