40#ifndef GEOGRAM_GFX_IMGUI_EXT
41#define GEOGRAM_GFX_IMGUI_EXT
46#ifdef GEO_COMPILER_GCC_FAMILY
47#pragma GCC diagnostic push
48#pragma GCC diagnostic ignored "-Wsign-conversion"
49#ifdef GEO_COMPILER_CLANG
50#pragma GCC diagnostic ignored "-Wunknown-warning-option"
51#pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
52#pragma GCC diagnostic ignored "-Wc++98-compat-pedantic"
56#include <geogram_gfx/third_party/imgui/imgui.h>
58#if defined(GEO_COMPILER_GCC_FAMILY)
59#pragma GCC diagnostic pop
74 enum { geo_imgui_string_length = 4096 };
76 namespace FileSystem {
81typedef int ImGuiExtFileDialogFlags;
84enum ImGuiExtFileDialogFlags_ {
85 ImGuiExtFileDialogFlags_Load = 1,
86 ImGuiExtFileDialogFlags_Save = 2
120 const char* label,
float* color
133 const char* label,
float* color
149 const char* extensions,
150 const char* filename,
151 ImGuiExtFileDialogFlags flags,
167 char* filename,
size_t filename_buff_len
173 inline bool MenuItem(
174 const std::string& name,
const char* shortcut,
175 bool* p_selected =
nullptr,
bool enabled =
true
177 return ImGui::MenuItem(name.c_str(), shortcut, p_selected, enabled);
183 inline bool MenuItem(
184 const std::string& name,
const char* shortcut =
nullptr,
185 bool selected =
false,
bool enabled =
true
187 return ImGui::MenuItem(name.c_str(), shortcut, selected, enabled);
193 inline bool BeginMenu(
const std::string& name) {
194 return ImGui::BeginMenu(name.c_str());
200 inline bool Button(
const std::string& name) {
201 return ImGui::Button(name.c_str());
220 inline void Tooltip(
const std::string& s) {
245 bool GEOGRAM_GFX_API SimpleButton(
const char* label,
const ImVec2& size);
250 inline bool SimpleButton(
const std::string& label) {
251 return SimpleButton(label.c_str());
Common include file, providing basic definitions. Should be included before anything else by all head...
#define GEOGRAM_GFX_API
Linkage declaration for geogram symbols.
Global Vorpaline namespace.