BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ui_scale.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_SCALE_H
21#define UI_SCALE_H
22
23#include "imgui.h"
24
25#include "state.h"
26
27/**
28 * @brief ImGUI handler for rendering the scale&transform window.
29 *
30 */
32{
33 /** If the scale&transform window should be rendered. */
35
36 /** Width of the sliders in the table. */
37 static constexpr float slider_width = 150.0f;
38
39 UiScaler();
40 /**
41 * @brief Enables window to render.
42 *
43 */
44 void show() { show_window = true; }
45 /**
46 * @brief Renders window with corresponding scale&transform widgets.
47 *
48 * @param app Application context.
49 * @param window_flags Flags used for rendered window.
50 */
51 void render(State &state, ImGuiWindowFlags window_flags);
52};
53
54#endif
Storage of data of used algorithms and input events.
Definition: state.h:50
ImGUI handler for rendering the scale&transform window.
Definition: ui_scale.h:32
void show()
Enables window to render.
Definition: ui_scale.h:44
UiScaler()
Definition: ui_scale.cpp:24
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding scale&transform widgets.
Definition: ui_scale.cpp:30
bool show_window
If the scale&transform window should be rendered.
Definition: ui_scale.h:34
static constexpr float slider_width
Width of the sliders in the table.
Definition: ui_scale.h:37