BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
utils_imgui.hpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
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 UTILS_IMGUI_HPP
20#define UTILS_IMGUI_HPP
21
22#include "frame_stats.h"
23
24#include <imgui.h>
25#include <string>
26#include <vector>
27
28/**
29 * @brief ImGUI wrapper for setting tooltip.
30 *
31 * Call this after the widget you want to use the tooltip on.
32 *
33 * @param text Tooltip text.
34 */
35static void
36tooltip(const char *text)
37{
38 ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 5.0f);
39 ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(2, 2));
40 ImGui::PushStyleVar(ImGuiStyleVar_Alpha, 0.8f);
41 if (ImGui::IsItemHovered())
42 ImGui::SetTooltip(text);
43 ImGui::PopStyleVar();
44 ImGui::PopStyleVar();
45 ImGui::PopStyleVar();
46}
47
48/**
49 * @brief ImGUI wrapper for reset button.
50 *
51 * It does not reset anything. It just creates button and returns if the button
52 * was pressed. It is on the user to reset the data after the button was
53 * pressed.
54 *
55 * @return true If the button was pressed.
56 * @return false If the button was not pressed.
57 */
58static bool
60{
61 ImGui::SameLine();
62 float width = ImGui::GetWindowContentRegionWidth() - 70.0f;
63 ImGui::Indent(width);
64 bool res = ImGui::Button("Reset data");
65 ImGui::Unindent(width);
66 return res;
67}
68
69#endif // #ifndef UTILS_IMGUI_HPP
static bool reset_button()
ImGUI wrapper for reset button.
Definition: utils_imgui.hpp:59
static void tooltip(const char *text)
ImGUI wrapper for setting tooltip.
Definition: utils_imgui.hpp:36