BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
wrapper_imgui.cpp
Go to the documentation of this file.
1#include "wrapper_imgui.h"
2
3#include "imgui.h"
4#include "imgui_impl_glfw.h"
5#include "imgui_impl_opengl3.h"
6
7#include "vendor/IconsFontAwesome5.h"
8
10{
11 ImGui_ImplOpenGL3_Shutdown();
12 ImGui_ImplGlfw_Shutdown();
13 ImGui::DestroyContext();
14}
15
16bool
17ImGuiWrapper::init(GLFWwindow *window)
18{
19 IMGUI_CHECKVERSION();
20 ImGui::CreateContext();
21 if (!ImGui_ImplGlfw_InitForOpenGL(window, true))
22 return false;
23 if (!ImGui_ImplOpenGL3_Init("#version 330 core"))
24 return false;
25 ImGui::StyleColorsLight();
26
27 ImGuiIO &io = ImGui::GetIO();
28 io.Fonts->AddFontFromFileTTF(BLOSSOM_DATA_DIR "/SourceSansPro-Regular.ttf",
29 16);
30
31 ImFontConfig config;
32 config.MergeMode = true;
33 static const ImWchar icon_ranges[] = { ICON_MIN_FA, ICON_MAX_FA, 0 };
34 io.Fonts->AddFontFromFileTTF(
35 BLOSSOM_DATA_DIR "/fa-solid-900.ttf", 16.0f, &config, icon_ranges);
36
37 ImGui::GetStyle().WindowRounding = 10.0f;
38
39 return true;
40}
41
42void
43ImGuiWrapper::render(int w, int h, State &state)
44{
45 ImGui_ImplOpenGL3_NewFrame();
46 ImGui_ImplGlfw_NewFrame();
47 ImGui::NewFrame();
48
49 menu.render(w, h, state);
50
51 ImGui::Render();
52 ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
53}
void render(int w, int h, State &state)
Render UI.
bool init(GLFWwindow *window)
Initialize ImGui and load fonts.
Storage of data of used algorithms and input events.
Definition: state.h:50
void render(int fb_width, int fb_height, State &state)
Renders main menu window, the plus button and currently opened menu item windows.
Definition: ui_menu.cpp:66