19#ifndef UTILS_IMGUI_HPP
20#define UTILS_IMGUI_HPP
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);
62 float width = ImGui::GetWindowContentRegionWidth() - 70.0f;
64 bool res = ImGui::Button(
"Reset data");
65 ImGui::Unindent(width);
static bool reset_button()
ImGUI wrapper for reset button.
static void tooltip(const char *text)
ImGUI wrapper for setting tooltip.