BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ui_load.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_load.h"
21
22#include "parsers.h"
23#include <exception>
24
26{
27 opener.SetTitle("Open file");
28 opener.SetTypeFilters(
29 { ".fcs", ".tsv" }); // TODO take this from parsers, somehow
30}
31
32void
33UiLoader::render(State &state, ImGuiWindowFlags window_flags)
34{
35 opener.Display();
36
37 if (opener.HasSelected()) {
38 try {
39 parse_generic(opener.GetSelected().string(), state.data);
40 } catch (std::exception &e) {
41 loading_error = e.what();
42 }
43
44 opener.ClearSelected();
45 }
46
47 if (!loading_error.empty()) {
48 ImGui::Begin("Loading error", nullptr, window_flags);
49 ImGui::Text(loading_error.c_str());
50 if (ImGui::Button("OK"))
51 loading_error = "";
52 ImGui::End();
53 }
54}
void parse_generic(const std::string &filename, DataModel &dm)
Parses data from input file.
Definition: parsers.cpp:29
Storage of data of used algorithms and input events.
Definition: state.h:50
DataModel data
Definition: state.h:51
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 render(State &state, ImGuiWindowFlags window_flags)
Renders open file dialog window.
Definition: ui_load.cpp:33