BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_save.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_SAVE_H
21#define UI_SAVE_H
22
23#include "imgui.h"
24#include "vendor/imfilebrowser.h"
25
26#include <array>
27#include <string>
28
29#include "state.h"
30
31/**
32 * @brief ImGUI handler for rendering the save file window.
33 *
34 */
35struct UiSaver
36{
37 /**
38 * @brief Types of data to be exported.
39 *
40 */
41 enum Types
42 {
48 COUNT // Number of possible export types
49 };
50
51 /** Maximum size of the file name. */
52 static constexpr int file_name_size = 128;
53
54 /** If the save file window should be rendered. */
56 /** ImGui file system dialog window handler.*/
57 ImGui::FileBrowser saver;
58 /** Error message of the saving file that will be shown in the error
59 * window. */
60 std::string saving_error;
61
62 /** If all types of data should be exported. */
63 bool all;
64 /** Array of flags for each export data type indicating which data should be
65 * exported and which not. */
66 std::array<bool, UiSaver::Types::COUNT> data_flags;
67 /** Names of the exported files for each export data type. */
68 std::array<std::string, UiSaver::Types::COUNT> file_names;
69
70 /**
71 * @brief Initializes \p saver settings and initializes variables with
72 * default values.
73 *
74 */
75 UiSaver();
76 /**
77 * @brief Enables window to render.
78 *
79 */
80 void show() { show_window = true; }
81
82 /**
83 * @brief Renders save file window, opens save file dialog window and calls
84 * @ref save_data() if a directory was selected.
85 *
86 * @param app Application context.
87 * @param window_flags Flags used for rendered window.
88 */
89 void render(State &state, ImGuiWindowFlags window_flags);
90
91 /**
92 * @brief Calls @ref write() for selected export data types.
93 *
94 * @param state Source of the exported data.
95 * @param dir_name Name of the selected directory.
96 */
97 void save_data(const State &state, const std::string &dir_name) const;
98 /**
99 * @brief Writes given data into the file in the tsv format.
100 *
101 * @param type Type of the exported data.
102 * @param state Source of the exported data.
103 * @param dir_name Name of the selected directory.
104 *
105 * \exception std::domain_error Throws when the file cannot be opened for
106 * writing.
107 */
108 void write(UiSaver::Types type,
109 const State &state,
110 const std::string &dir_name) const;
111};
112
113#endif
Storage of data of used algorithms and input events.
Definition: state.h:50
ImGUI handler for rendering the save file window.
Definition: ui_save.h:36
Types
Types of data to be exported.
Definition: ui_save.h:42
@ LAND_HD
Definition: ui_save.h:44
@ POINTS_HD
Definition: ui_save.h:43
@ CLUSTERS
Definition: ui_save.h:47
@ COUNT
Definition: ui_save.h:48
@ LAND_2D
Definition: ui_save.h:46
@ POINTS_2D
Definition: ui_save.h:45
std::array< std::string, UiSaver::Types::COUNT > file_names
Names of the exported files for each export data type.
Definition: ui_save.h:68
static constexpr int file_name_size
Maximum size of the file name.
Definition: ui_save.h:52
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
UiSaver()
Initializes saver settings and initializes variables with default values.
Definition: ui_save.cpp:30
void save_data(const State &state, const std::string &dir_name) const
Calls write() for selected export data types.
Definition: ui_save.cpp:110
bool show_window
If the save file window should be rendered.
Definition: ui_save.h:55
std::array< bool, UiSaver::Types::COUNT > data_flags
Array of flags for each export data type indicating which data should be exported and which not.
Definition: ui_save.h:66
void write(UiSaver::Types type, const State &state, const std::string &dir_name) const
Writes given data into the file in the tsv format.
Definition: ui_save.cpp:177
std::string saving_error
Error message of the saving file that will be shown in the error window.
Definition: ui_save.h:60
ImGui::FileBrowser saver
ImGui file system dialog window handler.
Definition: ui_save.h:57
bool all
If all types of data should be exported.
Definition: ui_save.h:63
void show()
Enables window to render.
Definition: ui_save.h:80