Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
imgui_ext.h
1/*
2 * Copyright (c) 2000-2022 Inria
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * * Neither the name of the ALICE Project-Team nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Contact: Bruno Levy
30 *
31 * https://www.inria.fr/fr/bruno-levy
32 *
33 * Inria,
34 * Domaine de Voluceau,
35 * 78150 Le Chesnay - Rocquencourt
36 * FRANCE
37 *
38 */
39
40#ifndef GEOGRAM_GFX_IMGUI_EXT
41#define GEOGRAM_GFX_IMGUI_EXT
42
44#include <string>
45
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"
53#endif
54#endif
55
56#include <geogram_gfx/third_party/imgui/imgui.h>
57
58#if defined(GEO_COMPILER_GCC_FAMILY)
59#pragma GCC diagnostic pop
60#endif
61
62
68namespace GEO {
74 enum { geo_imgui_string_length = 4096 };
75
76 namespace FileSystem {
77 class Node;
78 }
79}
80
81typedef int ImGuiExtFileDialogFlags;
82
83
84enum ImGuiExtFileDialogFlags_ {
85 ImGuiExtFileDialogFlags_Load = 1,
86 ImGuiExtFileDialogFlags_Save = 2
87};
88
89
90namespace ImGui {
91
99 float GEOGRAM_GFX_API scaling();
100
108 void GEOGRAM_GFX_API set_scaling(float x);
109
119 bool GEOGRAM_GFX_API ColorEdit3WithPalette(
120 const char* label, float* color
121 );
122
132 bool GEOGRAM_GFX_API ColorEdit4WithPalette(
133 const char* label, float* color
134 );
135
147 void GEOGRAM_GFX_API OpenFileDialog(
148 const char* label,
149 const char* extensions,
150 const char* filename,
151 ImGuiExtFileDialogFlags flags,
152 GEO::FileSystem::Node* root = nullptr
153 );
154
165 bool GEOGRAM_GFX_API FileDialog(
166 const char* label,
167 char* filename, size_t filename_buff_len
168 );
169
173 inline bool MenuItem(
174 const std::string& name, const char* shortcut,
175 bool* p_selected = nullptr, bool enabled = true
176 ) {
177 return ImGui::MenuItem(name.c_str(), shortcut, p_selected, enabled);
178 }
179
183 inline bool MenuItem(
184 const std::string& name, const char* shortcut = nullptr,
185 bool selected = false, bool enabled = true
186 ) {
187 return ImGui::MenuItem(name.c_str(), shortcut, selected, enabled);
188 }
189
193 inline bool BeginMenu(const std::string& name) {
194 return ImGui::BeginMenu(name.c_str());
195 }
196
200 inline bool Button(const std::string& name) {
201 return ImGui::Button(name.c_str());
202 }
203
211 void GEOGRAM_GFX_API Tooltip(const char* str);
212
220 inline void Tooltip(const std::string& s) {
221 Tooltip(s.c_str());
222 }
223
228 void GEOGRAM_GFX_API EnableTooltips();
229
234 void GEOGRAM_GFX_API DisableTooltips();
235
236
240 bool GEOGRAM_GFX_API SimpleButton(const char* label);
241
245 bool GEOGRAM_GFX_API SimpleButton(const char* label, const ImVec2& size);
246
250 inline bool SimpleButton(const std::string& label) {
251 return SimpleButton(label.c_str());
252 }
253
258 void GEOGRAM_GFX_API CenteredText(const char* text);
259
260}
261
262#endif
A Node in a FileSystem.
Definition file_system.h:69
Common include file, providing basic definitions. Should be included before anything else by all head...
#define GEOGRAM_GFX_API
Linkage declaration for geogram symbols.
Definition defs.h:55
Global Vorpaline namespace.