ImHex/external/ImGui/include/imgui_imhex_extensions.h

17 lines
640 B
C
Raw Normal View History

#pragma once
2021-01-27 11:04:42 +00:00
#include <functional>
#include <imgui.h>
namespace ImGui {
bool Hyperlink(const char* label, const ImVec2& size_arg = ImVec2(0, 0), ImGuiButtonFlags flags = 0);
2021-01-27 11:04:42 +00:00
bool BulletHyperlink(const char* label, const ImVec2& size_arg = ImVec2(0, 0), ImGuiButtonFlags flags = 0);
bool DescriptionButton(const char* label, const char* description, const ImVec2& size_arg = ImVec2(0, 0), ImGuiButtonFlags flags = 0);
void UnderlinedText(const char* label, ImColor color, const ImVec2& size_arg = ImVec2(0, 0));
void Disabled(std::function<void()> widgets, bool disabled);
2021-02-22 12:06:53 +00:00
void TextSpinner(const char* label);
}