22#include "imgui_stdlib.h"
23#include "vendor/IconsFontAwesome5.h"
24#include "vendor/colormap/palettes.hpp"
41 auto column_combo = [&](
const std::string &combo_name,
int &column_ind) {
42 ImGui::Text(
"Column for colors:");
45 ImGui::Text(
"No columns are present.");
49 if (ImGui::BeginCombo(combo_name.data(),
52 for (
size_t i = 0; i < dim; ++i) {
53 bool is_selected = (int)i == column_ind;
54 if (ImGui::Selectable(state.
data.
names[i].c_str(),
67 if (ImGui::Begin(
"Color", &
show_window, window_flags)) {
68 ImGui::Text(
"Style of coloring:");
74 if (ImGui::RadioButton(
"Expression",
76 (
int)ColorData::Coloring::EXPR))
79 if (ImGui::RadioButton(
"Discretized clusters",
81 (
int)ColorData::Coloring::CLUSTER))
84 if (ImGui::RadioButton(
"Brushing",
86 (
int)ColorData::Coloring::BRUSHING))
89 if (ImGui::SliderFloat(
"Alpha##color",
94 ImGuiSliderFlags_AlwaysClamp))
100 case (
int)ColorData::Coloring::EXPR: {
103 ImGui::Text(
"Color palette:");
104 if (ImGui::BeginCombo(
"##palettes",
107 for (
auto &[name, _] : colormap::palettes) {
109 if (ImGui::Selectable(name.c_str(), &is_selected)) {
120 if (ImGui::Checkbox(
"Reverse color palette",
124 case int(ColorData::Coloring::CLUSTER):
125 column_combo(
"##columnscluster",
128 if (ImGui::SliderInt(
"Cluster count",
135 case int(ColorData::Coloring::BRUSHING):
137 auto cluster_size = clustering.
clusters.size();
138 if (cluster_size != 0) {
139 ImGui::SliderFloat(
"Radius##mouseradiuscircle",
144 ImGuiSliderFlags_AlwaysClamp);
146 ImGui::RadioButton(
"None", &clustering.active_cluster, -1);
149 for (
auto iter = clustering.clusters.begin();
150 iter != clustering.clusters.end();) {
155 if (iter->first == -1) {
161 (
"##BrushingCluster" + std::to_string(i)).data(),
162 &clustering.active_cluster,
167 (
"##ClusterColor" + std::to_string(i)).data(),
168 (
float *)&clustering.clusters[i].first,
169 ImGuiColorEditFlags_NoInputs |
170 ImGuiColorEditFlags_NoLabel |
171 ImGuiColorEditFlags_AlphaPreview);
174 (
"##ClusterName" + std::to_string(i)).data(),
175 &clustering.clusters[i].second);
178 (ICON_FA_TIMES
"##" + std::to_string(i)).data())) {
179 clustering.active_cluster = -1;
180 iter = clustering.clusters.erase(iter);
188 if (ImGui::Button(
"+ Add cluster")) {
189 clustering.add_cluster();
int active_cluster
Index of the active cluster (into clusters) that is used for brushing.
int cluster_col
Index of the column used in cluster coloring.
std::map< int, std::pair< glm::vec3, std::string > > clusters
Cluster colors and names for brushing, with id of cluster as a key.
float radius_size
Size of the brushing radius circle for mouse.
int cluster_cnt
Count of the clusters used in cluster coloring.
void reset()
Resets color settings to their initial values.
bool reverse
Flag indicating if the colors of the color palette should be reversed.
float alpha
Alpha channel of RGBA color.
int expr_col
Index of the column used in expression coloring.
void reset_landmark_color(int id)
Reset colors and cluster ids of all landmarks in the cluster with input id.
int coloring
Type of the coloring method.
std::string col_palette
Name of the currently used color palette.
std::vector< std::string > names
Names of the dimensions.
Storage of data of used algorithms and input events.
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding color settings widgets.
bool show_window
If the color settings window should be rendered.
static bool reset_button()
ImGUI wrapper for reset button.
static void tooltip(const char *text)
ImGUI wrapper for setting tooltip.