BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_load.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#ifndef UI_LOAD_H
20#define UI_LOAD_H
21
22#include "imgui.h"
23#include "vendor/imfilebrowser.h"
24
25#include <string>
26
27#include "state.h"
28
29/**
30 * @brief ImGUI handler for rendering the open file dialog window.
31 *
32 */
34{
35 /** ImGui file system dialog window handler.*/
36 ImGui::FileBrowser opener;
37 /** Error message of the loading file that will be shown in the error
38 * window. */
39 std::string loading_error;
40
41 /**
42 * @brief Initializes \p opener settings.
43 *
44 */
45 UiLoader();
46 /**
47 * @brief Enables window to render.
48 *
49 */
50 void show() { opener.Open(); }
51 /**
52 * @brief Renders open file dialog window.
53 *
54 * @param app Application context.
55 * @param window_flags Flags used for rendered window.
56 */
57 void render(State &state, ImGuiWindowFlags window_flags);
58};
59
60#endif
Storage of data of used algorithms and input events.
Definition: state.h:50
ImGUI handler for rendering the open file dialog window.
Definition: ui_load.h:34
ImGui::FileBrowser opener
ImGui file system dialog window handler.
Definition: ui_load.h:36
std::string loading_error
Error message of the loading file that will be shown in the error window.
Definition: ui_load.h:39
UiLoader()
Initializes opener settings.
Definition: ui_load.cpp:25
void show()
Enables window to render.
Definition: ui_load.h:50
void render(State &state, ImGuiWindowFlags window_flags)
Renders open file dialog window.
Definition: ui_load.cpp:33