From 5a6af5bf23f396c198d3cea098a2a31dbbb31fc4 Mon Sep 17 00:00:00 2001 From: Mason Remaley Date: Fri, 16 Jan 2026 01:39:35 -0800 Subject: [PATCH] Updates to Dear ImGui v1.92.5-docking --- README.md | 2 +- build.zig.zon | 4 +- src/cached/dcimgui.cpp | 45 +- src/cached/dcimgui.h | 325 +- src/cached/dcimgui.json | 5692 ++++++------ src/cached/dcimgui_impl_vulkan.cpp | 28 +- src/cached/dcimgui_impl_vulkan.h | 107 +- src/cached/dcimgui_impl_vulkan.json | 531 +- src/cached/dcimgui_internal.cpp | 118 +- src/cached/dcimgui_internal.h | 225 +- src/cached/dcimgui_internal.json | 8060 ++++++++++------- src/cached/dcimgui_internal_imgui.json | 5692 ++++++------ src/generate.zig | 22 +- src/templates/impl_vulkan_prefix.zig.template | 9 +- 14 files changed, 11515 insertions(+), 9345 deletions(-) diff --git a/README.md b/README.md index 4f99fe0..85d8465 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Note that you never need to do this as a user of the library, unless you're maki 2. Add `python3` to your path 3. Set `$DEAR_BINDINGS` to a path to an appropriate version of [dear_bindings](https://github.com/dearimgui/dear_bindings) for the version of Dear ImGUI you're updating to 4. Run `zig build dear_bindings`. Output may need tweaks, glance over diff. -5. Run `zig build generate` to see if the generator still works. If it fails, you're probably missing values in an enumeration, `std.json` does not provide helper errors for this at the time of writing, the easiest way to debug this is to comment out the actual generation code, and all fields in `Header`, adding them back until you figure out which are causing the issue. +5. Run `zig build generate -- ...` to see if the generator still works. If it fails, you're probably missing values in an enumeration, `std.json` does not provide helper errors for this at the time of writing, the easiest way to debug this is to comment out the actual generation code, and all fields in `Header`, adding them back until you figure out which are causing the issue. 6. Test the bindings from a real Zig program that imports Dear ImGUI. ## Known differences diff --git a/build.zig.zon b/build.zig.zon index a9a6345..9f343b5 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -5,8 +5,8 @@ .minimum_zig_version = "0.16.0-dev.2193+fc517bd01", .dependencies = .{ .@"dear-imgui" = .{ - .url = "https://github.com/ocornut/imgui/archive/refs/tags/v1.92.2b-docking.tar.gz", - .hash = "N-V-__8AAPZKeQDWGL4ckVmICNUMMWIikMKny4fQHvs2tCFh", + .url = "https://github.com/ocornut/imgui/archive/refs/tags/v1.92.5-docking.tar.gz", + .hash = "N-V-__8AAEbOfQBnvcFcCX2W5z7tDaN8vaNZGamEQtNOe0UI", }, .@"Vulkan-Headers" = .{ .url = "https://github.com/KhronosGroup/Vulkan-Headers/archive/refs/tags/v1.4.313.tar.gz", diff --git a/src/cached/dcimgui.cpp b/src/cached/dcimgui.cpp index 89321f3..a0273d2 100644 --- a/src/cached/dcimgui.cpp +++ b/src/cached/dcimgui.cpp @@ -2806,9 +2806,9 @@ CIMGUI_API void cimgui::ImGui_DestroyPlatformWindows(void) ::ImGui::DestroyPlatformWindows(); } -CIMGUI_API cimgui::ImGuiViewport* cimgui::ImGui_FindViewportByID(ImGuiID id) +CIMGUI_API cimgui::ImGuiViewport* cimgui::ImGui_FindViewportByID(ImGuiID viewport_id) { - return reinterpret_cast<::cimgui::ImGuiViewport*>(::ImGui::FindViewportByID(id)); + return reinterpret_cast<::cimgui::ImGuiViewport*>(::ImGui::FindViewportByID(viewport_id)); } CIMGUI_API cimgui::ImGuiViewport* cimgui::ImGui_FindViewportByPlatformHandle(void* platform_handle) @@ -2906,15 +2906,6 @@ CIMGUI_API void cimgui::ImGuiIO_ClearInputMouse(cimgui::ImGuiIO* self) reinterpret_cast<::ImGuiIO*>(self)->ClearInputMouse(); } -#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - -CIMGUI_API void cimgui::ImGuiIO_ClearInputCharacters(cimgui::ImGuiIO* self) -{ - reinterpret_cast<::ImGuiIO*>(self)->ClearInputCharacters(); -} - -#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - CIMGUI_API void cimgui::ImGuiInputTextCallbackData_DeleteChars(cimgui::ImGuiInputTextCallbackData* self, int pos, int bytes_count) { reinterpret_cast<::ImGuiInputTextCallbackData*>(self)->DeleteChars(pos, bytes_count); @@ -3158,15 +3149,6 @@ CIMGUI_API void cimgui::ImGuiListClipper_SeekCursorForItem(cimgui::ImGuiListClip reinterpret_cast<::ImGuiListClipper*>(self)->SeekCursorForItem(item_index); } -#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - -CIMGUI_API void cimgui::ImGuiListClipper_IncludeRangeByIndices(cimgui::ImGuiListClipper* self, int item_begin, int item_end) -{ - reinterpret_cast<::ImGuiListClipper*>(self)->IncludeRangeByIndices(item_begin, item_end); -} - -#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - CIMGUI_API void cimgui::ImColor_SetHSV(cimgui::ImColor* self, float h, float s, float v, float a) { reinterpret_cast<::ImColor*>(self)->SetHSV(h, s, v, a); @@ -4033,9 +4015,9 @@ CIMGUI_API cimgui::ImVec2 cimgui::ImFont_CalcTextSizeA(cimgui::ImFont* self, flo return ConvertFromCPP_ImVec2(reinterpret_cast<::ImFont*>(self)->CalcTextSizeA(size, max_width, wrap_width, text_begin)); } -CIMGUI_API cimgui::ImVec2 cimgui::ImFont_CalcTextSizeAEx(cimgui::ImFont* self, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end, const char** remaining) +CIMGUI_API cimgui::ImVec2 cimgui::ImFont_CalcTextSizeAEx(cimgui::ImFont* self, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end, const char** out_remaining) { - return ConvertFromCPP_ImVec2(reinterpret_cast<::ImFont*>(self)->CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end, remaining)); + return ConvertFromCPP_ImVec2(reinterpret_cast<::ImFont*>(self)->CalcTextSizeA(size, max_width, wrap_width, text_begin, text_end, out_remaining)); } CIMGUI_API const char* cimgui::ImFont_CalcWordWrapPosition(cimgui::ImFont* self, float size, const char* text, const char* text_end, float wrap_width) @@ -4053,9 +4035,9 @@ CIMGUI_API void cimgui::ImFont_RenderCharEx(cimgui::ImFont* self, cimgui reinterpret_cast<::ImFont*>(self)->RenderChar(reinterpret_cast<::ImDrawList*>(draw_list), size, ConvertToCPP_ImVec2(pos), col, c, reinterpret_cast(cpu_fine_clip)); } -CIMGUI_API void cimgui::ImFont_RenderText(cimgui::ImFont* self, cimgui::ImDrawList* draw_list, float size, cimgui::ImVec2 pos, ImU32 col, cimgui::ImVec4 clip_rect, const char* text_begin, const char* text_end, float wrap_width, bool cpu_fine_clip) +CIMGUI_API void cimgui::ImFont_RenderText(cimgui::ImFont* self, cimgui::ImDrawList* draw_list, float size, cimgui::ImVec2 pos, ImU32 col, cimgui::ImVec4 clip_rect, const char* text_begin, const char* text_end, float wrap_width, ImDrawTextFlags flags) { - reinterpret_cast<::ImFont*>(self)->RenderText(reinterpret_cast<::ImDrawList*>(draw_list), size, ConvertToCPP_ImVec2(pos), col, ConvertToCPP_ImVec4(clip_rect), text_begin, text_end, wrap_width, cpu_fine_clip); + reinterpret_cast<::ImFont*>(self)->RenderText(reinterpret_cast<::ImDrawList*>(draw_list), size, ConvertToCPP_ImVec2(pos), col, ConvertToCPP_ImVec4(clip_rect), text_begin, text_end, wrap_width, flags); } #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS @@ -4092,6 +4074,16 @@ CIMGUI_API cimgui::ImVec2 cimgui::ImGuiViewport_GetWorkCenter(const cimgui::ImGu return ConvertFromCPP_ImVec2(reinterpret_cast(self)->GetWorkCenter()); } +CIMGUI_API void cimgui::ImGuiPlatformIO_ClearPlatformHandlers(cimgui::ImGuiPlatformIO* self) +{ + reinterpret_cast<::ImGuiPlatformIO*>(self)->ClearPlatformHandlers(); +} + +CIMGUI_API void cimgui::ImGuiPlatformIO_ClearRendererHandlers(cimgui::ImGuiPlatformIO* self) +{ + reinterpret_cast<::ImGuiPlatformIO*>(self)->ClearRendererHandlers(); +} + #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS CIMGUI_API void cimgui::ImGui_PushFont(cimgui::ImFont* font) @@ -4184,10 +4176,5 @@ CIMGUI_API bool cimgui::ImGui_ListBoxObsoleteEx(const char* label, int* curren return ::ImGui::ListBox(label, current_item, old_callback, user_data, items_count, height_in_items); } -CIMGUI_API void cimgui::ImGui_SetItemAllowOverlap(void) -{ - ::ImGui::SetItemAllowOverlap(); -} - #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS #endif // #ifndef IMGUI_DISABLE diff --git a/src/cached/dcimgui.h b/src/cached/dcimgui.h index 2ec78ce..6826345 100644 --- a/src/cached/dcimgui.h +++ b/src/cached/dcimgui.h @@ -2,38 +2,39 @@ // **DO NOT EDIT DIRECTLY** // https://github.com/dearimgui/dear_bindings -// dear imgui, v1.92.2b +// dear imgui, v1.92.5 // (headers) // Help: -// - See links below. // - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that. // - Read top of imgui.cpp for more details, links and comments. -// - Add '#define IMGUI_DEFINE_MATH_OPERATORS' before including this file (or in imconfig.h) to access courtesy maths operators for ImVec2 and ImVec4. +// - Add '#define IMGUI_DEFINE_MATH_OPERATORS' before including imgui.h (or in imconfig.h) to access courtesy maths operators for ImVec2 and ImVec4. // Resources: // - FAQ ........................ https://dearimgui.com/faq (in repository as docs/FAQ.md) // - Homepage ................... https://github.com/ocornut/imgui -// - Releases & changelog ....... https://github.com/ocornut/imgui/releases +// - Releases & Changelog ....... https://github.com/ocornut/imgui/releases // - Gallery .................... https://github.com/ocornut/imgui/issues?q=label%3Agallery (please post your screenshots/video there!) // - Wiki ....................... https://github.com/ocornut/imgui/wiki (lots of good stuff there) // - Getting Started https://github.com/ocornut/imgui/wiki/Getting-Started (how to integrate in an existing app by adding ~25 lines of code) // - Third-party Extensions https://github.com/ocornut/imgui/wiki/Useful-Extensions (ImPlot & many more) -// - Bindings/Backends https://github.com/ocornut/imgui/wiki/Bindings (language bindings, backends for various tech/engines) -// - Glossary https://github.com/ocornut/imgui/wiki/Glossary +// - Bindings/Backends https://github.com/ocornut/imgui/wiki/Bindings (language bindings + backends for various tech/engines) // - Debug Tools https://github.com/ocornut/imgui/wiki/Debug-Tools +// - Glossary https://github.com/ocornut/imgui/wiki/Glossary // - Software using Dear ImGui https://github.com/ocornut/imgui/wiki/Software-using-dear-imgui // - Issues & support ........... https://github.com/ocornut/imgui/issues // - Test Engine & Automation ... https://github.com/ocornut/imgui_test_engine (test suite, test engine to automate your apps) +// - Web version of the Demo .... https://pthom.github.io/imgui_manual_online/manual/imgui_manual.html (w/ source code browser) -// For first-time users having issues compiling/linking/running/loading fonts: +// For FIRST-TIME users having issues compiling/linking/running: // please post in https://github.com/ocornut/imgui/discussions if you cannot find a solution in resources above. -// Everything else should be asked in 'Issues'! We are building a database of cross-linked knowledge there. +// EVERYTHING ELSE should be asked in 'Issues'! We are building a database of cross-linked knowledge there. +// Since 1.92, we encourage font loading questions to also be posted in 'Issues'. // Library Version // (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') -#define IMGUI_VERSION "1.92.2b" -#define IMGUI_VERSION_NUM 19222 +#define IMGUI_VERSION "1.92.5" +#define IMGUI_VERSION_NUM 19250 #define IMGUI_HAS_TABLE // Added BeginTable() - from IMGUI_VERSION_NUM >= 18000 #define IMGUI_HAS_TEXTURES // Added ImGuiBackendFlags_RendererHasTextures - from IMGUI_VERSION_NUM >= 19198 #define IMGUI_HAS_VIEWPORT // In 'docking' WIP branch. @@ -98,19 +99,24 @@ extern "C" #define CIMGUI_IMPL_API CIMGUI_API #endif // #ifndef CIMGUI_IMPL_API // Helper Macros +// (note: compiling with NDEBUG will usually strip out assert() to nothing, which is NOT recommended because we use asserts to notify of programmer mistakes.) #ifndef IM_ASSERT #include #define IM_ASSERT(_EXPR) assert(_EXPR) // You can override the default assert handler by editing imconfig.h #endif // #ifndef IM_ASSERT #define IM_ARRAYSIZE(_ARR) ((int)(sizeof(_ARR) / sizeof(*(_ARR)))) // Size of a static C-style array. Don't use on pointers! #define IM_UNUSED(_VAR) ((void)(_VAR)) // Used to silence "unused variable warnings". Often useful as asserts may be stripped out from final builds. +#define IM_STRINGIFY_HELPER(_EXPR) #_EXPR +#define IM_STRINGIFY(_EXPR) IM_STRINGIFY_HELPER(_EXPR) // Preprocessor idiom to stringify e.g. an integer or a macro. // Check that version and structures layouts are matching between compiled imgui code and caller. Read comments above DebugCheckVersionAndDataLayout() for details. #define CIMGUI_CHECKVERSION() ImGui_DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx)) // Helper Macros - IM_FMTARGS, IM_FMTLIST: Apply printf-style warnings to our formatting functions. -// (MSVC provides an equivalent mechanism via SAL Annotations but it would require the macros in a different -// location. e.g. #include + void myprintf(_Printf_format_string_ const char* format, ...)) +// (MSVC provides an equivalent mechanism via SAL Annotations but it requires the macros in a different +// location. e.g. #include + void myprintf(_Printf_format_string_ const char* format, ...), +// and only works when using Code Analysis, rather than just normal compiling). +// (see https://github.com/ocornut/imgui/issues/8871 for a patch to enable this for MSVC's Code Analysis) #if !defined(IMGUI_USE_STB_SPRINTF)&& defined(__MINGW32__)&&!defined(__clang__) #define IM_FMTARGS(FMT) __attribute__((format(gnu_printf, FMT, FMT+1))) #define IM_FMTLIST(FMT) __attribute__((format(gnu_printf, FMT, 0))) @@ -258,9 +264,9 @@ typedef struct ImGuiWindowClass_t ImGuiWindowClass; / // Enumerations // - We don't use strongly typed enums much because they add constraints (can't extend in private code, can't store typed in bit fields, extra casting on iteration) // - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists! -// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. -// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. -// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. +// - In Visual Studio: Ctrl+Comma ("Edit.GoToAll") can follow symbols inside comments, whereas Ctrl+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: Alt+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments. typedef int ImGuiDir; // -> enum ImGuiDir // Enum: A cardinal direction (Left, Right, Up, Down) typedef int ImGuiKey; // -> enum ImGuiKey // Enum: A key identifier (ImGuiKey_XXX or ImGuiMod_XXX value) typedef int ImGuiMouseSource; // -> enum ImGuiMouseSource // Enum; A mouse input source identifier (Mouse, TouchScreen, Pen) @@ -275,11 +281,12 @@ typedef int ImGuiTableBgTarget; // -> enum ImGuiTableBgTarget_ // Enum: A co // Flags (declared as int to allow using as flags without overhead, and to not pollute the top of this file) // - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists! -// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. -// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. -// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. +// - In Visual Studio: Ctrl+Comma ("Edit.GoToAll") can follow symbols inside comments, whereas Ctrl+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: Alt+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments. typedef int ImDrawFlags; // -> enum ImDrawFlags_ // Flags: for ImDrawList functions typedef int ImDrawListFlags; // -> enum ImDrawListFlags_ // Flags: for ImDrawList instance +typedef int ImDrawTextFlags; // -> enum ImDrawTextFlags_ // Internal, do not use! typedef int ImFontFlags; // -> enum ImFontFlags_ // Flags: for ImFont typedef int ImFontAtlasFlags; // -> enum ImFontAtlasFlags_ // Flags: for ImFontAtlas typedef int ImGuiBackendFlags; // -> enum ImGuiBackendFlags_ // Flags: for io.BackendFlags @@ -296,6 +303,7 @@ typedef int ImGuiInputFlags; // -> enum ImGuiInputFlags_ // Flags: f typedef int ImGuiInputTextFlags; // -> enum ImGuiInputTextFlags_ // Flags: for InputText(), InputTextMultiline() typedef int ImGuiItemFlags; // -> enum ImGuiItemFlags_ // Flags: for PushItemFlag(), shared by all items typedef int ImGuiKeyChord; // -> ImGuiKey | ImGuiMod_XXX // Flags: for IsKeyChordPressed(), Shortcut() etc. an ImGuiKey optionally OR-ed with one or more ImGuiMod_XXX values. +typedef int ImGuiListClipperFlags; // -> enum ImGuiListClipperFlags_// Flags: for ImGuiListClipper typedef int ImGuiPopupFlags; // -> enum ImGuiPopupFlags_ // Flags: for OpenPopup*(), BeginPopupContext*(), IsPopupOpen() typedef int ImGuiMultiSelectFlags; // -> enum ImGuiMultiSelectFlags_// Flags: for BeginMultiSelect() typedef int ImGuiSelectableFlags; // -> enum ImGuiSelectableFlags_ // Flags: for Selectable() @@ -363,7 +371,7 @@ IM_MSVC_RUNTIME_CHECKS_RESTORE // - You may decide to store a higher-level structure containing texture, sampler, shader etc. with various // constructors if you like. You will need to implement ==/!= operators. // History: -// - In v1.91.4 (2024/10/08): the default type for ImTextureID was changed from 'void*' to 'ImU64'. This allowed backends requirig 64-bit worth of data to build on 32-bit architectures. Use intermediary intptr_t cast and read FAQ if you have casting warnings. +// - In v1.91.4 (2024/10/08): the default type for ImTextureID was changed from 'void*' to 'ImU64'. This allowed backends requiring 64-bit worth of data to build on 32-bit architectures. Use intermediary intptr_t cast and read FAQ if you have casting warnings. // - In v1.92.0 (2025/06/11): added ImTextureRef which carry either a ImTextureID either a pointer to internal texture atlas. All user facing functions taking ImTextureID changed to ImTextureRef #ifndef ImTextureID typedef ImU64 ImTextureID; // Default: store up to 64-bits (any pointer or integer). A majority of backends are ok with that. @@ -702,13 +710,13 @@ CIMGUI_API bool ImGui_ComboCallback(const char* label, int* current_item, const CIMGUI_API bool ImGui_ComboCallbackEx(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int popup_max_height_in_items /* = -1 */); // Widgets: Drag Sliders -// - CTRL+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. +// - Ctrl+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. // - For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every function, note that a 'float v[X]' function argument is the same as 'float* v', // the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x // - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. // - Format string may also be set to NULL or use the default format ("%f" or "%d"). // - Speed are per-pixel of mouse movement (v_speed=0.2f: mouse needs to move by 5 pixels to increase value by 1). For keyboard/gamepad navigation, minimum speed is Max(v_speed, minimum_step_at_given_precision). -// - Use v_min < v_max to clamp edits to given limits. Note that CTRL+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used. +// - Use v_min < v_max to clamp edits to given limits. Note that Ctrl+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used. // - Use v_max = FLT_MAX / INT_MAX etc to avoid clamping to a maximum, same with v_min = -FLT_MAX / INT_MIN to avoid clamping to a minimum. // - We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them. // - Legacy: Pre-1.78 there are DragXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument. @@ -739,7 +747,7 @@ CIMGUI_API bool ImGui_DragScalarN(const char* label, ImGuiDataType data_type, vo CIMGUI_API bool ImGui_DragScalarNEx(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed /* = 1.0f */, const void* p_min /* = NULL */, const void* p_max /* = NULL */, const char* format /* = NULL */, ImGuiSliderFlags flags /* = 0 */); // Widgets: Regular Sliders -// - CTRL+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. +// - Ctrl+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. // - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. // - Format string may also be set to NULL or use the default format ("%f" or "%d"). // - Legacy: Pre-1.78 there are SliderXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument. @@ -774,7 +782,7 @@ CIMGUI_API bool ImGui_VSliderScalar(const char* label, ImVec2 size, ImGuiDataTyp CIMGUI_API bool ImGui_VSliderScalarEx(const char* label, ImVec2 size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format /* = NULL */, ImGuiSliderFlags flags /* = 0 */); // Widgets: Input with Keyboard -// - If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp. +// - If you want to use InputText() with std::string or any custom dynamic string type, use the wrapper in misc/cpp/imgui_stdlib.h/.cpp! // - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc. CIMGUI_API bool ImGui_InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags /* = 0 */); // Implied callback = NULL, user_data = NULL CIMGUI_API bool ImGui_InputTextEx(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags /* = 0 */, ImGuiInputTextCallback callback /* = NULL */, void* user_data /* = NULL */); @@ -816,7 +824,7 @@ CIMGUI_API void ImGui_SetColorEditOptions(ImGuiColorEditFlags flags); // Widgets: Trees // - TreeNode functions return true when the node is open, in which case you need to also call TreePop() when you are finished displaying the tree node contents. CIMGUI_API bool ImGui_TreeNode(const char* label); -CIMGUI_API bool ImGui_TreeNodeStr(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // helper variation to easily decorelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet(). +CIMGUI_API bool ImGui_TreeNodeStr(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // helper variation to easily decorrelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet(). CIMGUI_API bool ImGui_TreeNodePtr(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // " CIMGUI_API bool ImGui_TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2); CIMGUI_API bool ImGui_TreeNodeVPtr(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2); @@ -843,7 +851,7 @@ CIMGUI_API bool ImGui_SelectableBoolPtr(const char* label, bool* p_selected, ImG CIMGUI_API bool ImGui_SelectableBoolPtrEx(const char* label, bool* p_selected, ImGuiSelectableFlags flags /* = 0 */, ImVec2 size /* = ImVec2(0, 0) */); // "bool* p_selected" point to the selection state (read-write), as a convenient helper. // Multi-selection system for Selectable(), Checkbox(), TreeNode() functions [BETA] -// - This enables standard multi-selection/range-selection idioms (CTRL+Mouse/Keyboard, SHIFT+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used. +// - This enables standard multi-selection/range-selection idioms (Ctrl+Mouse/Keyboard, Shift+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used. // - ImGuiSelectionUserData is often used to store your item index within the current view (but may store something else). // - Read comments near ImGuiMultiSelectIO for instructions/details and see 'Demo->Widgets->Selection State & Multi-Select' for demo. // - TreeNode() is technically supported but... using this correctly is more complicated. You need some sort of linear/random access to your tree, @@ -1039,18 +1047,24 @@ CIMGUI_API bool ImGui_TabItemButton(const char* label, ImGuiTabItemFlags flags / CIMGUI_API void ImGui_SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name. // Docking -// [BETA API] Enable with io.ConfigFlags |= ImGuiConfigFlags_DockingEnable. -// Note: You can use most Docking facilities without calling any API. You DO NOT need to call DockSpace() to use Docking! -// - Drag from window title bar or their tab to dock/undock. Hold SHIFT to disable docking. -// - Drag from window menu button (upper-left button) to undock an entire node (all windows). -// - When io.ConfigDockingWithShift == true, you instead need to hold SHIFT to enable docking. -// About dockspaces: -// - Use DockSpaceOverViewport() to create a window covering the screen or a specific viewport + a dockspace inside it. -// This is often used with ImGuiDockNodeFlags_PassthruCentralNode to make it transparent. -// - Use DockSpace() to create an explicit dock node _within_ an existing window. See Docking demo for details. -// - Important: Dockspaces need to be submitted _before_ any window they can host. Submit it early in your frame! -// - Important: Dockspaces need to be kept alive if hidden, otherwise windows docked into it will be undocked. -// e.g. if you have multiple tabs with a dockspace inside each tab: submit the non-visible dockspaces with ImGuiDockNodeFlags_KeepAliveOnly. +// - Read https://github.com/ocornut/imgui/wiki/Docking for details. +// - Enable with io.ConfigFlags |= ImGuiConfigFlags_DockingEnable. +// - You can use most Docking facilities without calling any API. You don't necessarily need to call a DockSpaceXXX function to use Docking! +// - Drag from window title bar or their tab to dock/undock. Hold SHIFT to disable docking. +// - Drag from window menu button (upper-left button) to undock an entire node (all windows). +// - When io.ConfigDockingWithShift == true, you instead need to hold SHIFT to enable docking. +// - Dockspaces: +// - If you want to dock windows into the edge of your screen, most application can simply call DockSpaceOverViewport(): +// e.g. ImGui::NewFrame(); then ImGui::DockSpaceOverViewport(); // Create a dockspace in main viewport. +// or: ImGui::NewFrame(); then ImGui::DockSpaceOverViewport(0, nullptr, ImGuiDockNodeFlags_PassthruCentralNode); // Create a dockspace in main viewport, where central node is transparent. +// - A dockspace is an explicit dock node within an existing window. +// - DockSpaceOverViewport() basically creates an invisible window covering a viewport, and submit a DockSpace() into it. +// - IMPORTANT: Dockspaces need to be submitted _before_ any window they can host. Submit them early in your frame! +// - IMPORTANT: Dockspaces need to be kept alive if hidden, otherwise windows docked into it will be undocked. +// If you have e.g. multiple tabs with a dockspace inside each tab: submit the non-visible dockspaces with ImGuiDockNodeFlags_KeepAliveOnly. +// - Programmatic docking: +// - There is no public API yet other than the very limited SetNextWindowDockID() function. Sorry for that! +// - Read https://github.com/ocornut/imgui/wiki/Docking for examples of how to use current internal API. CIMGUI_API ImGuiID ImGui_DockSpace(ImGuiID dockspace_id); // Implied size = ImVec2(0, 0), flags = 0, window_class = NULL CIMGUI_API ImGuiID ImGui_DockSpaceEx(ImGuiID dockspace_id, ImVec2 size /* = ImVec2(0, 0) */, ImGuiDockNodeFlags flags /* = 0 */, const ImGuiWindowClass* window_class /* = NULL */); CIMGUI_API ImGuiID ImGui_DockSpaceOverViewport(void); // Implied dockspace_id = 0, viewport = NULL, flags = 0, window_class = NULL @@ -1086,7 +1100,7 @@ CIMGUI_API const ImGuiPayload* ImGui_GetDragDropPayload(void); // Disabling [BETA API] // - Disable all user interactions and dim items visuals (applying style.DisabledAlpha over current colors) // - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled) -// - Tooltips windows by exception are opted out of disabling. +// - Tooltips windows are automatically opted out of disabling. Note that IsItemHovered() by default returns false on disabled items, unless using ImGuiHoveredFlags_AllowWhenDisabled. // - BeginDisabled(false)/EndDisabled() essentially does nothing but is provided to facilitate use of boolean expressions (as a micro-optimization: if you have tens of thousands of BeginDisabled(false)/EndDisabled() pairs, you might want to reformulate your code to avoid making those calls) CIMGUI_API void ImGui_BeginDisabled(bool disabled /* = true */); CIMGUI_API void ImGui_EndDisabled(void); @@ -1176,8 +1190,8 @@ CIMGUI_API void ImGui_SetNextFrameWantCaptureKeyboard(bool want_capture_k // Inputs Utilities: Shortcut Testing & Routing [BETA] // - ImGuiKeyChord = a ImGuiKey + optional ImGuiMod_Alt/ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Super. -// ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments) -// ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments) +// ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments +// ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments // only ImGuiMod_XXX values are legal to combine with an ImGuiKey. You CANNOT combine two ImGuiKey values. // - The general idea is that several callers may register interest in a shortcut, and only one owner gets it. // Parent -> call Shortcut(Ctrl+S) // When Parent is focused, Parent gets the shortcut. @@ -1265,7 +1279,7 @@ CIMGUI_API void ImGui_UpdatePlatformWindows(void); CIMGUI_API void ImGui_RenderPlatformWindowsDefault(void); // Implied platform_render_arg = NULL, renderer_render_arg = NULL CIMGUI_API void ImGui_RenderPlatformWindowsDefaultEx(void* platform_render_arg /* = NULL */, void* renderer_render_arg /* = NULL */); // call in main loop. will call RenderWindow/SwapBuffers platform functions for each secondary viewport which doesn't have the ImGuiViewportFlags_Minimized flag set. May be reimplemented by user for custom rendering needs. CIMGUI_API void ImGui_DestroyPlatformWindows(void); // call DestroyWindow platform functions for all viewports. call from backend Shutdown() if you need to close platform windows before imgui shutdown. otherwise will be called by DestroyContext(). -CIMGUI_API ImGuiViewport* ImGui_FindViewportByID(ImGuiID id); // this is a helper for backends. +CIMGUI_API ImGuiViewport* ImGui_FindViewportByID(ImGuiID viewport_id); // this is a helper for backends. CIMGUI_API ImGuiViewport* ImGui_FindViewportByPlatformHandle(void* platform_handle); // this is a helper for backends. the type platform_handle is decided by the backend (e.g. HWND, MyWindow*, GLFWwindow* etc.) //----------------------------------------------------------------------------- @@ -1294,7 +1308,7 @@ typedef enum ImGuiWindowFlags_AlwaysVerticalScrollbar = 1<<14, // Always show vertical scrollbar (even if ContentSize.y < Size.y) ImGuiWindowFlags_AlwaysHorizontalScrollbar = 1<<15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x) ImGuiWindowFlags_NoNavInputs = 1<<16, // No keyboard/gamepad navigation within the window - ImGuiWindowFlags_NoNavFocus = 1<<17, // No focusing toward this window with keyboard/gamepad navigation (e.g. skipped by CTRL+TAB) + ImGuiWindowFlags_NoNavFocus = 1<<17, // No focusing toward this window with keyboard/gamepad navigation (e.g. skipped by Ctrl+Tab) ImGuiWindowFlags_UnsavedDocument = 1<<18, // Display a dot next to the title. When used in a tab/docking context, tab is selected when clicking the X + closure is not assumed (will wait for user to stop submitting the tab). Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar. ImGuiWindowFlags_NoDocking = 1<<19, // Disable docking of this window ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, @@ -1308,16 +1322,10 @@ typedef enum ImGuiWindowFlags_Popup = 1<<26, // Don't use! For internal use by BeginPopup() ImGuiWindowFlags_Modal = 1<<27, // Don't use! For internal use by BeginPopupModal() ImGuiWindowFlags_ChildMenu = 1<<28, // Don't use! For internal use by BeginMenu() - - // Obsolete names -#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - ImGuiWindowFlags_NavFlattened = 1<<29, // Obsoleted in 1.90.9: Use ImGuiChildFlags_NavFlattened in BeginChild() call. - ImGuiWindowFlags_AlwaysUseWindowPadding = 1<<30, // Obsoleted in 1.90.0: Use ImGuiChildFlags_AlwaysUseWindowPadding in BeginChild() call. -#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS } ImGuiWindowFlags_; // Flags for ImGui::BeginChild() -// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'. +// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'.) // About using AutoResizeX/AutoResizeY flags: // - May be combined with SetNextWindowSizeConstraints() to set a min/max size for each axis (see "Demo->Child->Auto-resize with Constraints"). // - Size measurement for a given axis is only performed when the child window is within visible boundaries, or is just appearing. @@ -1328,20 +1336,15 @@ typedef enum typedef enum { ImGuiChildFlags_None = 0, - ImGuiChildFlags_Borders = 1<<0, // Show an outer border and enable WindowPadding. (IMPORTANT: this is always == 1 == true for legacy reason) - ImGuiChildFlags_AlwaysUseWindowPadding = 1<<1, // Pad with style.WindowPadding even if no border are drawn (no padding by default for non-bordered child windows because it makes more sense) - ImGuiChildFlags_ResizeX = 1<<2, // Allow resize from right border (layout direction). Enable .ini saving (unless ImGuiWindowFlags_NoSavedSettings passed to window flags) - ImGuiChildFlags_ResizeY = 1<<3, // Allow resize from bottom border (layout direction). " - ImGuiChildFlags_AutoResizeX = 1<<4, // Enable auto-resizing width. Read "IMPORTANT: Size measurement" details above. - ImGuiChildFlags_AutoResizeY = 1<<5, // Enable auto-resizing height. Read "IMPORTANT: Size measurement" details above. - ImGuiChildFlags_AlwaysAutoResize = 1<<6, // Combined with AutoResizeX/AutoResizeY. Always measure size even when child is hidden, always return true, always disable clipping optimization! NOT RECOMMENDED. - ImGuiChildFlags_FrameStyle = 1<<7, // Style the child window like a framed item: use FrameBg, FrameRounding, FrameBorderSize, FramePadding instead of ChildBg, ChildRounding, ChildBorderSize, WindowPadding. - ImGuiChildFlags_NavFlattened = 1<<8, // [BETA] Share focus scope, allow keyboard/gamepad navigation to cross over parent border to this child or between sibling child windows. - - // Obsolete names -#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - ImGuiChildFlags_Border = ImGuiChildFlags_Borders, // Renamed in 1.91.1 (August 2024) for consistency. -#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiChildFlags_Borders = 1<<0, // Show an outer border and enable WindowPadding. (IMPORTANT: this is always == 1 == true for legacy reason) + ImGuiChildFlags_AlwaysUseWindowPadding = 1<<1, // Pad with style.WindowPadding even if no border are drawn (no padding by default for non-bordered child windows because it makes more sense) + ImGuiChildFlags_ResizeX = 1<<2, // Allow resize from right border (layout direction). Enable .ini saving (unless ImGuiWindowFlags_NoSavedSettings passed to window flags) + ImGuiChildFlags_ResizeY = 1<<3, // Allow resize from bottom border (layout direction). " + ImGuiChildFlags_AutoResizeX = 1<<4, // Enable auto-resizing width. Read "IMPORTANT: Size measurement" details above. + ImGuiChildFlags_AutoResizeY = 1<<5, // Enable auto-resizing height. Read "IMPORTANT: Size measurement" details above. + ImGuiChildFlags_AlwaysAutoResize = 1<<6, // Combined with AutoResizeX/AutoResizeY. Always measure size even when child is hidden, always return true, always disable clipping optimization! NOT RECOMMENDED. + ImGuiChildFlags_FrameStyle = 1<<7, // Style the child window like a framed item: use FrameBg, FrameRounding, FrameBorderSize, FramePadding instead of ChildBg, ChildRounding, ChildBorderSize, WindowPadding. + ImGuiChildFlags_NavFlattened = 1<<8, // [BETA] Share focus scope, allow keyboard/gamepad navigation to cross over parent border to this child or between sibling child windows. } ImGuiChildFlags_; // Flags for ImGui::PushItemFlag() @@ -1396,6 +1399,15 @@ typedef enum ImGuiInputTextFlags_CallbackResize = 1<<22, // Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misc/cpp/imgui_stdlib.h for an example of using this) ImGuiInputTextFlags_CallbackEdit = 1<<23, // Callback on any edit. Note that InputText() already returns true on edit + you can always use IsItemEdited(). The callback is useful to manipulate the underlying buffer while focus is active. + // Multi-line Word-Wrapping [BETA] + // - Not well tested yet. Please report any incorrect cursor movement, selection behavior etc. bug to https://github.com/ocornut/imgui/issues/3237. + // - Wrapping style is not ideal. Wrapping of long words/sections (e.g. words larger than total available width) may be particularly unpleasing. + // - Wrapping width needs to always account for the possibility of a vertical scrollbar. + // - It is much slower than regular text fields. + // Ballpark estimate of cost on my 2019 desktop PC: for a 100 KB text buffer: +~0.3 ms (Optimized) / +~1.0 ms (Debug build). + // The CPU cost is very roughly proportional to text length, so a 10 KB buffer should cost about ten times less. + ImGuiInputTextFlags_WordWrap = 1<<24, // InputTextMultiline(): word-wrap lines that are too long. + // Obsolete names //ImGuiInputTextFlags_AlwaysInsertMode = ImGuiInputTextFlags_AlwaysOverwrite // [renamed in 1.82] name was not matching behavior } ImGuiInputTextFlags_; @@ -1421,7 +1433,7 @@ typedef enum ImGuiTreeNodeFlags_SpanAllColumns = 1<<14, // Frame will span all columns of its container table (label will still fit in current column) ImGuiTreeNodeFlags_LabelSpanAllColumns = 1<<15, // Label will span all columns of its container table //ImGuiTreeNodeFlags_NoScrollOnOpen = 1 << 16, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible - ImGuiTreeNodeFlags_NavLeftJumpsToParent = 1<<17, // Nav: left arrow moves back to parent. This is processed in TreePop() when there's an unfullfilled Left nav request remaining. + ImGuiTreeNodeFlags_NavLeftJumpsToParent = 1<<17, // Nav: left arrow moves back to parent. This is processed in TreePop() when there's an unfulfilled Left nav request remaining. ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, // [EXPERIMENTAL] Draw lines connecting TreeNode hierarchy. Discuss in GitHub issue #2920. @@ -1433,7 +1445,7 @@ typedef enum #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS ImGuiTreeNodeFlags_NavLeftJumpsBackHere = ImGuiTreeNodeFlags_NavLeftJumpsToParent, // Renamed in 1.92.0 ImGuiTreeNodeFlags_SpanTextWidth = ImGuiTreeNodeFlags_SpanLabelWidth, // Renamed in 1.90.7 - ImGuiTreeNodeFlags_AllowItemOverlap = ImGuiTreeNodeFlags_AllowOverlap, // Renamed in 1.89.7 + //ImGuiTreeNodeFlags_AllowItemOverlap = ImGuiTreeNodeFlags_AllowOverlap, // Renamed in 1.89.7 #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS } ImGuiTreeNodeFlags_; @@ -1472,10 +1484,11 @@ typedef enum ImGuiSelectableFlags_Disabled = 1<<3, // Cannot be selected, display grayed out text ImGuiSelectableFlags_AllowOverlap = 1<<4, // (WIP) Hit testing to allow subsequent widgets to overlap this one ImGuiSelectableFlags_Highlight = 1<<5, // Make the item be displayed as if it is hovered + ImGuiSelectableFlags_SelectOnNav = 1<<6, // Auto-select when moved into, unless Ctrl is held. Automatic when in a BeginMultiSelect() block. #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS ImGuiSelectableFlags_DontClosePopups = ImGuiSelectableFlags_NoAutoClosePopups, // Renamed in 1.91.0 - ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7 + //ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7 #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS } ImGuiSelectableFlags_; @@ -1570,7 +1583,7 @@ typedef enum // Tooltips mode // - typically used in IsItemHovered() + SetTooltip() sequence. // - this is a shortcut to pull flags from 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' where you can reconfigure desired behavior. - // e.g. 'TooltipHoveredFlagsForMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'. + // e.g. 'HoverFlagsForTooltipMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_AllowWhenDisabled'. // - for frequently actioned or hovered items providing a tooltip, you want may to use ImGuiHoveredFlags_ForTooltip (stationary + delay) so the tooltip doesn't show too often. // - for items which main purpose is to be hovered, or items with low affordance, or in less consistent apps, prefer no delay or shorter delay. ImGuiHoveredFlags_ForTooltip = 1<<12, // Shortcut for standard flags when using IsItemHovered() + SetTooltip() sequence. @@ -1623,6 +1636,7 @@ typedef enum ImGuiDragDropFlags_AcceptBeforeDelivery = 1<<10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered. ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1<<11, // Do not draw the default highlight rectangle when hovering over target. ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1<<12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site. + ImGuiDragDropFlags_AcceptDrawAsHovered = 1<<13, // Accepting item will render as if hovered. Useful for e.g. a Button() used as a drop target. ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery. #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS @@ -1871,12 +1885,9 @@ enum // Forward declared enum ImGuiMod_Mask_ = 0xF000, // 4-bits #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - ImGuiKey_COUNT = ImGuiKey_NamedKey_END, // Obsoleted in 1.91.5 because it was extremely misleading (since named keys don't start at 0 anymore) + ImGuiKey_COUNT = ImGuiKey_NamedKey_END, // Obsoleted in 1.91.5 because it was misleading (since named keys don't start at 0 anymore) ImGuiMod_Shortcut = ImGuiMod_Ctrl, // Removed in 1.90.7, you can now simply use ImGuiMod_Ctrl - ImGuiKey_ModCtrl = ImGuiMod_Ctrl, - ImGuiKey_ModShift = ImGuiMod_Shift, - ImGuiKey_ModAlt = ImGuiMod_Alt, - ImGuiKey_ModSuper = ImGuiMod_Super, // Renamed in 1.89 + //ImGuiKey_ModCtrl = ImGuiMod_Ctrl, ImGuiKey_ModShift = ImGuiMod_Shift, ImGuiKey_ModAlt = ImGuiMod_Alt, ImGuiKey_ModSuper = ImGuiMod_Super, // Renamed in 1.89 //ImGuiKey_KeyPadEnter = ImGuiKey_KeypadEnter, // Renamed in 1.87 #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS }; @@ -1898,7 +1909,7 @@ typedef enum ImGuiInputFlags_RouteAlways = 1<<13, // Do not register route, poll keys directly. // - Routing options ImGuiInputFlags_RouteOverFocused = 1<<14, // Option: global route: higher priority than focused route (unless active item in focused route). - ImGuiInputFlags_RouteOverActive = 1<<15, // Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. CTRL+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active. + ImGuiInputFlags_RouteOverActive = 1<<15, // Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. Ctrl+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active. ImGuiInputFlags_RouteUnlessBgFocused = 1<<16, // Option: global route: will not be applied if underlying background/void is focused (== no Dear ImGui windows are focused). Useful for overlay applications. ImGuiInputFlags_RouteFromRootWindow = 1<<17, // Option: route evaluated from the point of view of root window rather than current window. @@ -1945,10 +1956,11 @@ typedef enum ImGuiBackendFlags_RendererHasVtxOffset = 1<<3, // Backend Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bit indices. ImGuiBackendFlags_RendererHasTextures = 1<<4, // Backend Renderer supports ImTextureData requests to create/update/destroy textures. This enables incremental texture updates and texture reloads. See https://github.com/ocornut/imgui/blob/master/docs/BACKENDS.md for instructions on how to upgrade your custom backend. - // [BETA] Viewports - ImGuiBackendFlags_PlatformHasViewports = 1<<10, // Backend Platform supports multiple viewports. - ImGuiBackendFlags_HasMouseHoveredViewport = 1<<11, // Backend Platform supports calling io.AddMouseViewportEvent() with the viewport under the mouse. IF POSSIBLE, ignore viewports with the ImGuiViewportFlags_NoInputs flag (Win32 backend, GLFW 3.30+ backend can do this, SDL backend cannot). If this cannot be done, Dear ImGui needs to use a flawed heuristic to find the viewport under. - ImGuiBackendFlags_RendererHasViewports = 1<<12, // Backend Renderer supports multiple viewports. + // [BETA] Multi-Viewports + ImGuiBackendFlags_RendererHasViewports = 1<<10, // Backend Renderer supports multiple viewports. + ImGuiBackendFlags_PlatformHasViewports = 1<<11, // Backend Platform supports multiple viewports. + ImGuiBackendFlags_HasMouseHoveredViewport = 1<<12, // Backend Platform supports calling io.AddMouseViewportEvent() with the viewport under the mouse. IF POSSIBLE, ignore viewports with the ImGuiViewportFlags_NoInputs flag (Win32 backend, GLFW 3.30+ backend can do this, SDL backend cannot). If this cannot be done, Dear ImGui needs to use a flawed heuristic to find the viewport under. + ImGuiBackendFlags_HasParentViewport = 1<<13, // Backend Platform supports honoring viewport->ParentViewport/ParentViewportId value, by applying the corresponding parent/child relation at the Platform level. } ImGuiBackendFlags_; // Enumeration for PushStyleColor() / PopStyleColor() @@ -2009,10 +2021,12 @@ typedef enum ImGuiCol_TextLink, // Hyperlink color ImGuiCol_TextSelectedBg, // Selected text inside an InputText ImGuiCol_TreeLines, // Tree node hierarchy outlines when using ImGuiTreeNodeFlags_DrawLines - ImGuiCol_DragDropTarget, // Rectangle highlighting a drop target + ImGuiCol_DragDropTarget, // Rectangle border highlighting a drop target + ImGuiCol_DragDropTargetBg, // Rectangle background highlighting a drop target + ImGuiCol_UnsavedMarker, // Unsaved Document marker (in window title and tabs) ImGuiCol_NavCursor, // Color of keyboard/gamepad navigation cursor/rectangle, when visible - ImGuiCol_NavWindowingHighlight, // Highlight window when using CTRL+TAB - ImGuiCol_NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active + ImGuiCol_NavWindowingHighlight, // Highlight window when using Ctrl+Tab + ImGuiCol_NavWindowingDimBg, // Darken/colorize entire screen behind the Ctrl+Tab window list, when active ImGuiCol_ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active ImGuiCol_COUNT, @@ -2028,9 +2042,9 @@ typedef enum // - The enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. // During initialization or between frames, feel free to just poke into ImGuiStyle directly. // - Tip: Use your programming IDE navigation facilities on the names in the _second column_ below to find the actual members and their description. -// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. -// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. -// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. +// - In Visual Studio: Ctrl+Comma ("Edit.GoToAll") can follow symbols inside comments, whereas Ctrl+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: Alt+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments. // - When changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type. typedef enum { @@ -2055,6 +2069,7 @@ typedef enum ImGuiStyleVar_CellPadding, // ImVec2 CellPadding ImGuiStyleVar_ScrollbarSize, // float ScrollbarSize ImGuiStyleVar_ScrollbarRounding, // float ScrollbarRounding + ImGuiStyleVar_ScrollbarPadding, // float ScrollbarPadding ImGuiStyleVar_GrabMinSize, // float GrabMinSize ImGuiStyleVar_GrabRounding, // float GrabRounding ImGuiStyleVar_ImageBorderSize, // float ImageBorderSize @@ -2137,7 +2152,7 @@ typedef enum // Obsolete names #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - ImGuiColorEditFlags_AlphaPreview = 0, // [Removed in 1.91.8] This is the default now. Will display a checkerboard unless ImGuiColorEditFlags_AlphaNoBg is set. + ImGuiColorEditFlags_AlphaPreview = 0, // Removed in 1.91.8. This is the default now. Will display a checkerboard unless ImGuiColorEditFlags_AlphaNoBg is set. #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS //ImGuiColorEditFlags_RGB = ImGuiColorEditFlags_DisplayRGB, ImGuiColorEditFlags_HSV = ImGuiColorEditFlags_DisplayHSV, ImGuiColorEditFlags_HEX = ImGuiColorEditFlags_DisplayHex // [renamed in 1.69] } ImGuiColorEditFlags_; @@ -2150,9 +2165,9 @@ typedef enum ImGuiSliderFlags_None = 0, ImGuiSliderFlags_Logarithmic = 1<<5, // Make the widget logarithmic (linear otherwise). Consider using ImGuiSliderFlags_NoRoundToFormat with this if using a format-string with small amount of digits. ImGuiSliderFlags_NoRoundToFormat = 1<<6, // Disable rounding underlying value to match precision of the display format string (e.g. %.3f values are rounded to those 3 digits). - ImGuiSliderFlags_NoInput = 1<<7, // Disable CTRL+Click or Enter key allowing to input text directly into the widget. + ImGuiSliderFlags_NoInput = 1<<7, // Disable Ctrl+Click or Enter key allowing to input text directly into the widget. ImGuiSliderFlags_WrapAround = 1<<8, // Enable wrapping around from max to min and from min to max. Only supported by DragXXX() functions for now. - ImGuiSliderFlags_ClampOnInput = 1<<9, // Clamp value to min/max bounds when input manually with CTRL+Click. By default CTRL+Click allows going out of bounds. + ImGuiSliderFlags_ClampOnInput = 1<<9, // Clamp value to min/max bounds when input manually with Ctrl+Click. By default Ctrl+Click allows going out of bounds. ImGuiSliderFlags_ClampZeroRange = 1<<10, // Clamp even if min==max==0.0f. Otherwise due to legacy reason DragXXX functions don't clamp with those values. When your clamping limits are dynamic you almost always want to use it. ImGuiSliderFlags_NoSpeedTweaks = 1<<11, // Disable keyboard modifiers altering tweak speed. Useful if you want to alter tweak speed yourself based on your own logic. ImGuiSliderFlags_AlwaysClamp = ImGuiSliderFlags_ClampOnInput | ImGuiSliderFlags_ClampZeroRange, @@ -2491,6 +2506,7 @@ struct ImGuiStyle_t float ColumnsMinSpacing; // Minimum horizontal spacing between two columns. Preferably > (FramePadding.x + 1). float ScrollbarSize; // Width of the vertical scrollbar, Height of the horizontal scrollbar. float ScrollbarRounding; // Radius of grab corners for scrollbar. + float ScrollbarPadding; // Padding of scrollbar grab within its frame (same for both axes). float GrabMinSize; // Minimum width/height of a grab box for slider/scrollbar. float GrabRounding; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs. float LogSliderDeadzone; // The size in pixels of the dead-zone around zero on logarithmic sliders that cross zero. @@ -2508,6 +2524,9 @@ struct ImGuiStyle_t ImGuiTreeNodeFlags TreeLinesFlags; // Default way to draw lines connecting TreeNode hierarchy. ImGuiTreeNodeFlags_DrawLinesNone or ImGuiTreeNodeFlags_DrawLinesFull or ImGuiTreeNodeFlags_DrawLinesToNodes. float TreeLinesSize; // Thickness of outlines when using ImGuiTreeNodeFlags_DrawLines. float TreeLinesRounding; // Radius of lines connecting child nodes to the vertical line. + float DragDropTargetRounding; // Radius of the drag and drop target frame. + float DragDropTargetBorderSize; // Thickness of the drag and drop target border. + float DragDropTargetPadding; // Size to expand the drag and drop target from actual target item size. ImGuiDir ColorButtonPosition; // Side of the color button in the ColorEdit4 widget (left/right). Defaults to ImGuiDir_Right. ImVec2 ButtonTextAlign; // Alignment of button text when button is larger than text. Defaults to (0.5f, 0.5f) (centered). ImVec2 SelectableTextAlign; // Alignment of selectable text. Defaults to (0.0f, 0.0f) (top-left aligned). It's generally important to keep this left-aligned if you want to lay multiple items on a same line. @@ -2516,6 +2535,7 @@ struct ImGuiStyle_t ImVec2 SeparatorTextPadding; // Horizontal offset of text from each edge of the separator + spacing on other axis. Generally small values. .y is recommended to be == FramePadding.y. ImVec2 DisplayWindowPadding; // Apply to regular windows: amount which we enforce to keep visible when moving near edges of your screen. ImVec2 DisplaySafeAreaPadding; // Apply to every windows, menus, popups, tooltips: amount where we avoid displaying contents. Adjust if you cannot see the edges of your screen (e.g. on a TV where scaling has not been configured). + bool DockingNodeHasCloseButton; // Docking node has their own CloseButton() to close all docked windows. float DockingSeparatorSize; // Thickness of resizing border between docked windows float MouseCursorScale; // Scale software rendered mouse cursor (when io.MouseDrawCursor is enabled). We apply per-monitor DPI scaling over this scale. May be removed later. bool AntiAliasedLines; // Enable anti-aliased lines/borders. Disable if you are really tight on CPU/GPU. Latched at the beginning of the frame (copied to ImDrawList). @@ -2582,7 +2602,7 @@ struct ImGuiIO_t // Font system ImFontAtlas* Fonts; // // Font atlas: load, rasterize and pack one or more fonts into a single texture. ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. - bool FontAllowUserScaling; // = false // [OBSOLETE] Allow user scaling text of individual window with CTRL+Wheel. + bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with Ctrl+Wheel. // Keyboard/Gamepad Navigation options bool ConfigNavSwapGamepadButtons; // = false // Swap Activate<>Cancel (A<>B) buttons, matching typical "Nintendo/Japanese style" gamepad layout. @@ -2595,6 +2615,7 @@ struct ImGuiIO_t // Docking options (when ImGuiConfigFlags_DockingEnable is set) bool ConfigDockingNoSplit; // = false // Simplified docking mode: disable window splitting, so docking is limited to merging multiple windows together into tab-bars. + bool ConfigDockingNoDockingOver; // = false // Simplified docking mode: disable window merging into a same tab-bar, so docking is limited to splitting windows. bool ConfigDockingWithShift; // = false // Enable docking with holding Shift key (reduce visual noise, allows dropping in wider space) bool ConfigDockingAlwaysTabBar; // = false // [BETA] [FIXME: This currently creates regression with auto-sizing and general overhead] Make every single floating window display within a docking node. bool ConfigDockingTransparentPayload; // = false // [BETA] Make window or viewport transparent when docking and only display docking boxes on the target viewport. Useful if rendering of multiple viewport cannot be synced. Best used with ConfigViewportsNoAutoMerge. @@ -2603,8 +2624,8 @@ struct ImGuiIO_t bool ConfigViewportsNoAutoMerge; // = false; // Set to make all floating imgui windows always create their own viewport. Otherwise, they are merged into the main host viewports when overlapping it. May also set ImGuiViewportFlags_NoAutoMerge on individual viewport. bool ConfigViewportsNoTaskBarIcon; // = false // Disable default OS task bar icon flag for secondary viewports. When a viewport doesn't want a task bar icon, ImGuiViewportFlags_NoTaskBarIcon will be set on it. bool ConfigViewportsNoDecoration; // = true // Disable default OS window decoration flag for secondary viewports. When a viewport doesn't want window decorations, ImGuiViewportFlags_NoDecoration will be set on it. Enabling decoration can create subsequent issues at OS levels (e.g. minimum window size). - bool ConfigViewportsNoDefaultParent; // = false // Disable default OS parenting to main viewport for secondary viewports. By default, viewports are marked with ParentViewportId = , expecting the platform backend to setup a parent/child relationship between the OS windows (some backend may ignore this). Set to true if you want the default to be 0, then all viewports will be top-level OS windows. - bool ConfigViewportPlatformFocusSetsImGuiFocus; //= true // When a platform window is focused (e.g. using Alt+Tab, clicking Platform Title Bar), apply corresponding focus on imgui windows (may clear focus/active id from imgui windows location in other platform windows). In principle this is better enabled but we provide an opt-out, because some Linux window managers tend to eagerly focus windows (e.g. on mouse hover, or even a simple window pos/size change). + bool ConfigViewportsNoDefaultParent; // = true // When false: set secondary viewports' ParentViewportId to main viewport ID by default. Expects the platform backend to setup a parent/child relationship between the OS windows based on this value. Some backend may ignore this. Set to true if you want viewports to automatically be parent of main viewport, otherwise all viewports will be top-level OS windows. + bool ConfigViewportsPlatformFocusSetsImGuiFocus; //= true // When a platform window is focused (e.g. using Alt+Tab, clicking Platform Title Bar), apply corresponding focus on imgui windows (may clear focus/active id from imgui windows location in other platform windows). In principle this is better enabled but we provide an opt-out, because some Linux window managers tend to eagerly focus windows (e.g. on mouse hover, or even a simple window pos/size change). // DPI/Scaling options // This may keep evolving during 1.92.x releases. Expect some turbulence. @@ -2621,7 +2642,7 @@ struct ImGuiIO_t bool ConfigDragClickToInputText; // = false // [BETA] Enable turning DragXXX widgets into text input with a simple mouse click-release (without moving). Not desirable on devices without a keyboard. bool ConfigWindowsResizeFromEdges; // = true // Enable resizing of windows from their edges and from the lower-left corner. This requires ImGuiBackendFlags_HasMouseCursors for better mouse cursor feedback. (This used to be a per-window ImGuiWindowFlags_ResizeFromAnySide flag) bool ConfigWindowsMoveFromTitleBarOnly; // = false // Enable allowing to move windows only when clicking on their title bar. Does not apply to windows without a title bar. - bool ConfigWindowsCopyContentsWithCtrlC; // = false // [EXPERIMENTAL] CTRL+C copy the contents of focused window into the clipboard. Experimental because: (1) has known issues with nested Begin/End pairs (2) text output quality varies (3) text output is in submission order rather than spatial order. + bool ConfigWindowsCopyContentsWithCtrlC; // = false // [EXPERIMENTAL] Ctrl+C copy the contents of focused window into the clipboard. Experimental because: (1) has known issues with nested Begin/End pairs (2) text output quality varies (3) text output is in submission order rather than spatial order. bool ConfigScrollbarScrollByPage; // = true // Enable scrolling page by page when clicking outside the scrollbar grab. When disabled, always scroll to clicked location. When enabled, Shift+Click scrolls to clicked location. float ConfigMemoryCompactTimer; // = 60.0f // Timer (in seconds) to free transient windows/tables memory buffers when unused. Set to -1.0f to disable. @@ -2659,7 +2680,7 @@ struct ImGuiIO_t // Option to enable various debug tools showing buttons that will call the IM_DEBUG_BREAK() macro. // - The Item Picker tool will be available regardless of this being enabled, in order to maximize its discoverability. // - Requires a debugger being attached, otherwise IM_DEBUG_BREAK() options will appear to crash your application. - // e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version). + // e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version. bool ConfigDebugIsDebuggerPresent; // = false // Enable various tools calling IM_DEBUG_BREAK(). // Tools to detect code submitting items with conflicting/duplicate IDs @@ -2732,7 +2753,7 @@ struct ImGuiIO_t // (reading from those variables is fair game, as they are extremely unlikely to be moving anywhere) ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX, -FLT_MAX) if mouse is unavailable (on another screen, etc.) bool MouseDown[5]; // Mouse buttons: 0=left, 1=right, 2=middle + extras (ImGuiMouseButton_COUNT == 5). Dear ImGui mostly uses left and right buttons. Other buttons allow us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. - float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold SHIFT to turn vertical scroll into horizontal scroll. + float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold Shift to turn vertical scroll into horizontal scroll. float MouseWheelH; // Mouse wheel Horizontal. >0 scrolls Left, <0 scrolls Right. Most users don't have a mouse with a horizontal wheel, may not be filled by all backends. ImGuiMouseSource MouseSource; // Mouse actual input peripheral (Mouse/TouchScreen/Pen). ImGuiID MouseHoveredViewport; // (Optional) Modify using io.AddMouseViewportEvent(). With multi-viewports: viewport the OS mouse is hovering. If possible _IGNORING_ viewports with the ImGuiViewportFlags_NoInputs flag is much better (few backends can handle that). Set io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport if you can provide this info. If you don't imgui will infer the value using the rectangles and last focused time of the viewports it knows about (ignoring other OS windows). @@ -2742,7 +2763,7 @@ struct ImGuiIO_t bool KeySuper; // Keyboard modifier down: Windows/Super (non-macOS), Ctrl (macOS) // Other state maintained from data above + IO function calls - ImGuiKeyChord KeyMods; // Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags. Read-only, updated by NewFrame() + ImGuiKeyChord KeyMods; // Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags). Read-only, updated by NewFrame() ImGuiKeyData KeysData[ImGuiKey_NamedKey_COUNT]; // Key state for all known keys. MUST use 'key - ImGuiKey_NamedKey_BEGIN' as index. Use IsKeyXXX() functions to access this. bool WantCaptureMouseUnlessPopupClose; // Alternative to WantCaptureMouse: (WantCaptureMouse == true && WantCaptureMouseUnlessPopupClose == false) when a click over void is expected to close a popup. ImVec2 MousePosPrev; // Previous mouse position (note that MouseDelta is not necessary == MousePos-MousePosPrev, in case either position is invalid) @@ -2756,8 +2777,8 @@ struct ImGuiIO_t double MouseReleasedTime[5]; // Time of last released (rarely used! but useful to handle delayed single-click when trying to disambiguate them from double-click). bool MouseDownOwned[5]; // Track if button was clicked inside a dear imgui window or over void blocked by a popup. We don't request mouse capture from the application if click started outside ImGui bounds. bool MouseDownOwnedUnlessPopupClose[5]; // Track if button was clicked inside a dear imgui window. - bool MouseWheelRequestAxisSwap; // On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system. - bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a Ctrl+click that spawned a simulated right click + bool MouseWheelRequestAxisSwap; // On a non-Mac system, holding Shift requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system. + bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a Ctrl+Click that spawned a simulated right click float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) float MouseDownDurationPrev[5]; // Previous time the mouse button has been down ImVec2 MouseDragMaxDistanceAbs[5]; // Maximum distance, absolute, on each axis, of how much mouse has traveled from the clicking point @@ -2786,6 +2807,8 @@ struct ImGuiIO_t const char* (*GetClipboardTextFn)(void* user_data); void (*SetClipboardTextFn)(void* user_data, const char* text); void* ClipboardUserData; + + //void ClearInputCharacters() { InputQueueCharacters.resize(0); } // [Obsoleted in 1.89.8] Clear the current frame text input buffer. Now included within ClearInputKeys(). Removed this as it is ambiguous/misleading and generally incorrect to use with the existence of a higher-level input queue. #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS }; // Input Functions @@ -2806,9 +2829,6 @@ CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self, bool accepting_even CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self); // Clear all incoming events. CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self); // Clear current keyboard/gamepad state + current frame text input buffer. Equivalent to releasing all keys/buttons. CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self); // Clear current mouse state. -#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self); // [Obsoleted in 1.89.8] Clear the current frame text input buffer. Now included within ClearInputKeys(). -#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS //----------------------------------------------------------------------------- // [SECTION] Misc data structures (ImGuiInputTextCallbackData, ImGuiSizeCallbackData, ImGuiPayload) @@ -2839,10 +2859,10 @@ struct ImGuiInputTextCallbackData_t ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only // [Completion,History] char* Buf; // Text buffer // Read-write // [Resize] Can replace pointer / [Completion,History,Always] Only write to pointed data, don't replace the actual pointer! int BufTextLen; // Text length (in bytes) // Read-write // [Resize,Completion,History,Always] Exclude zero-terminator storage. In C land: == strlen(some_text), in C++ land: string.length() - int BufSize; // Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1 + int BufSize; // Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land: == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1 bool BufDirty; // Set if you modify Buf/BufTextLen! // Write // [Completion,History,Always] int CursorPos; // // Read-write // [Completion,History,Always] - int SelectionStart; // // Read-write // [Completion,History,Always] == to SelectionEnd when no selection) + int SelectionStart; // // Read-write // [Completion,History,Always] == to SelectionEnd when no selection int SelectionEnd; // // Read-write // [Completion,History,Always] }; CIMGUI_API void ImGuiInputTextCallbackData_DeleteChars(ImGuiInputTextCallbackData* self, int pos, int bytes_count); @@ -3002,6 +3022,13 @@ CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); // Obsolete: use on your own storage if you know only integer are being stored (open/close all tree nodes) CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self, int val); +// Flags for ImGuiListClipper (currently not fully exposed in function calls: a future refactor will likely add this to ImGuiListClipper::Begin function equivalent) +typedef enum +{ + ImGuiListClipperFlags_None = 0, + ImGuiListClipperFlags_NoSetTableRowCounters = 1<<0, // [Internal] Disabled modifying table row counters. Avoid assumption that 1 clipper item == 1 table row. +} ImGuiListClipperFlags_; + // Helper: Manually clip large list of items. // If you have lots evenly spaced items and you have random access to the list, you can perform coarse // clipping based on visibility to only submit items that are in view. @@ -3024,14 +3051,15 @@ CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self, int val); // - The clipper also handles various subtleties related to keyboard/gamepad navigation, wrapping etc. struct ImGuiListClipper_t { - ImGuiContext* Ctx; // Parent UI context - int DisplayStart; // First item to display, updated by each call to Step() - int DisplayEnd; // End of items to display (exclusive) - int ItemsCount; // [Internal] Number of items - float ItemsHeight; // [Internal] Height of item after a first step and item submission can calculate it - double StartPosY; // [Internal] Cursor position at the time of Begin() or after table frozen rows are all processed - double StartSeekOffsetY; // [Internal] Account for frozen rows in a table and initial loss of precision in very large windows. - void* TempData; // [Internal] Internal data + ImGuiContext* Ctx; // Parent UI context + int DisplayStart; // First item to display, updated by each call to Step() + int DisplayEnd; // End of items to display (exclusive) + int ItemsCount; // [Internal] Number of items + float ItemsHeight; // [Internal] Height of item after a first step and item submission can calculate it + double StartPosY; // [Internal] Cursor position at the time of Begin() or after table frozen rows are all processed + double StartSeekOffsetY; // [Internal] Account for frozen rows in a table and initial loss of precision in very large windows. + void* TempData; // [Internal] Internal data + ImGuiListClipperFlags Flags; // [Internal] Flags, currently not yet well exposed. }; CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self, int items_count, float items_height /* = -1.0f */); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); // Automatically called on the last call of Step() that returns false. @@ -3044,9 +3072,6 @@ CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self, int // - The only reason to call this is: you can use ImGuiListClipper::Begin(INT_MAX) if you don't know item count ahead of time. // - In this case, after all steps are done, you'll want to call SeekCursorForItem(item_count). CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self, int item_index); -#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS -CIMGUI_API void ImGuiListClipper_IncludeRangeByIndices(ImGuiListClipper* self, int item_begin, int item_end); // [renamed in 1.89.9] -#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS // Helpers: ImVec2/ImVec4 operators // - It is important that we are keeping those disabled by default so they don't leak in user space. @@ -3100,7 +3125,7 @@ CIMGUI_API ImColor ImColor_HSV(float h, float s, float v, float a /* = 1.0f */); // Multi-selection system // Documentation at: https://github.com/ocornut/imgui/wiki/Multi-Select // - Refer to 'Demo->Widgets->Selection State & Multi-Select' for demos using this. -// - This system implements standard multi-selection idioms (CTRL+Mouse/Keyboard, SHIFT+Mouse/Keyboard, etc) +// - This system implements standard multi-selection idioms (Ctrl+Mouse/Keyboard, Shift+Mouse/Keyboard, etc) // with support for clipper (skipping non-visible items), box-select and many other details. // - Selectable(), Checkbox() are supported but custom widgets may use it as well. // - TreeNode() is technically supported but... using this correctly is more complicated: you need some sort of linear/random access to your tree, @@ -3138,7 +3163,7 @@ typedef enum { ImGuiMultiSelectFlags_None = 0, ImGuiMultiSelectFlags_SingleSelect = 1<<0, // Disable selecting more than one item. This is available to allow single-selection code to share same code/logic if desired. It essentially disables the main purpose of BeginMultiSelect() tho! - ImGuiMultiSelectFlags_NoSelectAll = 1<<1, // Disable CTRL+A shortcut to select all. + ImGuiMultiSelectFlags_NoSelectAll = 1<<1, // Disable Ctrl+A shortcut to select all. ImGuiMultiSelectFlags_NoRangeSelect = 1<<2, // Disable Shift+selection mouse/keyboard support (useful for unordered 2D selection). With BoxSelect is also ensure contiguous SetRange requests are not combined into one. This allows not handling interpolation in SetRange requests. ImGuiMultiSelectFlags_NoAutoSelect = 1<<3, // Disable selecting items when navigating (useful for e.g. supporting range-select in a list of checkboxes). ImGuiMultiSelectFlags_NoAutoClear = 1<<4, // Disable clearing selection when navigating or selecting another one (generally used with ImGuiMultiSelectFlags_NoAutoSelect. useful for e.g. supporting range-select in a list of checkboxes). @@ -3154,6 +3179,7 @@ typedef enum ImGuiMultiSelectFlags_SelectOnClickRelease = 1<<14, // Apply selection on mouse release when clicking an unselected item. Allow dragging an unselected item without altering selection. //ImGuiMultiSelectFlags_RangeSelect2d = 1 << 15, // Shift+Selection uses 2d geometry instead of linear sequence, so possible to use Shift+up/down to select vertically in grid. Analogous to what BoxSelect does. ImGuiMultiSelectFlags_NavWrapX = 1<<16, // [Temporary] Enable navigation wrapping on X axis. Provided as a convenience because we don't have a design for the general Nav API for this yet. When the more general feature be public we may obsolete this flag in favor of new one. + ImGuiMultiSelectFlags_NoSelectOnRightClick = 1<<17, // Disable default right-click processing, which selects item on mouse down, and is designed for context-menus. } ImGuiMultiSelectFlags_; // Main IO structure returned by BeginMultiSelect()/EndMultiSelect(). @@ -3279,7 +3305,7 @@ struct ImDrawCmd_t }; // Since 1.83: returns ImTextureID associated with this draw call. Warning: DO NOT assume this is always same as 'TextureId' (we will change this function for an upcoming feature) // Since 1.92: removed ImDrawCmd::TextureId field, the getter function must be used! -CIMGUI_API ImTextureID ImDrawCmd_GetTexID(const ImDrawCmd* self); // == (TexRef._TexData ? TexRef._TexData->TexID : TexRef._TexID +CIMGUI_API ImTextureID ImDrawCmd_GetTexID(const ImDrawCmd* self); // == (TexRef._TexData ? TexRef._TexData->TexID : TexRef._TexID) // Vertex layout #ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT @@ -3480,7 +3506,7 @@ CIMGUI_API void ImDrawList_AddCallback(ImDrawList* self, ImDrawCallback c CIMGUI_API void ImDrawList_AddCallbackEx(ImDrawList* self, ImDrawCallback callback, void* userdata, size_t userdata_size /* = 0 */); // Advanced: Miscellaneous CIMGUI_API void ImDrawList_AddDrawCmd(ImDrawList* self); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible -CIMGUI_API ImDrawList* ImDrawList_CloneOutput(const ImDrawList* self); // Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. +CIMGUI_API ImDrawList* ImDrawList_CloneOutput(const ImDrawList* self); // Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. For multi-threaded rendering, consider using `imgui_threaded_rendering` from https://github.com/ocornut/imgui_club instead. // Advanced: Channels // - Use to split render into layers. By switching channels to can render out-of-order (e.g. submit FG primitives before BG primitives) // - Use to minimize draw calls (e.g. if going back-and-forth between multiple clipping rectangles, prefer to append into separate channels then merge at the end) @@ -3503,8 +3529,8 @@ CIMGUI_API void ImDrawList_PrimWriteIdx(ImDrawList* self, ImDrawIdx idx); CIMGUI_API void ImDrawList_PrimVtx(ImDrawList* self, ImVec2 pos, ImVec2 uv, ImU32 col); // Write vertex with unique index // Obsolete names #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS -CIMGUI_API void ImDrawList_PushTextureID(ImDrawList* self, ImTextureRef tex_ref); // RENAMED in 1.92.x -CIMGUI_API void ImDrawList_PopTextureID(ImDrawList* self); // RENAMED in 1.92.x +CIMGUI_API void ImDrawList_PushTextureID(ImDrawList* self, ImTextureRef tex_ref); // RENAMED in 1.92.0 +CIMGUI_API void ImDrawList_PopTextureID(ImDrawList* self); // RENAMED in 1.92.0 #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS // [Internal helpers] CIMGUI_API void ImDrawList__SetDrawListSharedData(ImDrawList* self, ImDrawListSharedData* data); @@ -3534,7 +3560,7 @@ struct ImDrawData_t ImVec2 DisplaySize; // Size of the viewport to render (== GetMainViewport()->Size for the main viewport, == io.DisplaySize in most single-viewport applications) ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Copied from viewport->FramebufferScale (== io.DisplayFramebufferScale for main viewport). Generally (1,1) on normal display, (2,2) on OSX with Retina display. ImGuiViewport* OwnerViewport; // Viewport carrying the ImDrawData instance, might be of use to the renderer (generally not). - ImVector_ImTextureDataPtr* Textures; // List of textures to update. Most of the times the list is shared by all ImDrawData, has only 1 texture and it doesn't need any update. This almost always points to ImGui::GetPlatformIO().Textures[]. May be overriden or set to NULL if you want to manually update textures. + ImVector_ImTextureDataPtr* Textures; // List of textures to update. Most of the times the list is shared by all ImDrawData, has only 1 texture and it doesn't need any update. This almost always points to ImGui::GetPlatformIO().Textures[]. May be overridden or set to NULL if you want to manually update textures. }; CIMGUI_API void ImDrawData_Clear(ImDrawData* self); CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self, ImDrawList* draw_list); // Helper to add an external draw list into an existing ImDrawData. @@ -3612,8 +3638,10 @@ CIMGUI_API int ImTextureData_GetPitch(const ImTextureData* self); CIMGUI_API ImTextureRef ImTextureData_GetTexRef(ImTextureData* self); CIMGUI_API ImTextureID ImTextureData_GetTexID(const ImTextureData* self); // Called by Renderer backend -CIMGUI_API void ImTextureData_SetTexID(ImTextureData* self, ImTextureID tex_id); // Call after creating or destroying the texture. Never modify TexID directly! -CIMGUI_API void ImTextureData_SetStatus(ImTextureData* self, ImTextureStatus status); // Call after honoring a request. Never modify Status directly! +// - Call SetTexID() and SetStatus() after honoring texture requests. Never modify TexID and Status directly! +// - A backend may decide to destroy a texture that we did not request to destroy, which is fine (e.g. freeing resources), but we immediately set the texture back in _WantCreate mode. +CIMGUI_API void ImTextureData_SetTexID(ImTextureData* self, ImTextureID tex_id); +CIMGUI_API void ImTextureData_SetStatus(ImTextureData* self, ImTextureStatus status); //----------------------------------------------------------------------------- // [SECTION] Font API (ImFontConfig, ImFontGlyph, ImFontAtlasFlags, ImFontAtlas, ImFontGlyphRangesBuilder, ImFont) @@ -3626,7 +3654,7 @@ struct ImFontConfig_t char Name[40]; // // Name (strictly to ease debugging, hence limited size buffer) void* FontData; // // TTF/OTF data int FontDataSize; // // TTF/OTF data size - bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the owner ImFontAtlas (will delete memory itself). // Options bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. @@ -3757,7 +3785,7 @@ struct ImFontAtlas_t #ifdef IMGUI_DISABLE_OBSOLETE_FUNCTIONS ImTextureRef TexRef; // Latest texture identifier == TexData->GetTexRef(). #else - union // Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.x + union // Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.0. { ImTextureRef TexRef; ImTextureRef TexID; @@ -3792,9 +3820,9 @@ struct ImFontAtlas_t // Legacy: You can request your rectangles to be mapped as font glyph (given a font + Unicode point), so you can render e.g. custom colorful icons and use them as regular glyphs. --> Prefer using a custom ImFontLoader. ImFontAtlasRect TempRect; // For old GetCustomRectByIndex() API #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS - //unsigned int FontBuilderFlags; // OBSOLETED in 1.92.X: Renamed to FontLoaderFlags. - //int TexDesiredWidth; // OBSOLETED in 1.92.X: Force texture width before calling Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height) - //typedef ImFontAtlasRect ImFontAtlasCustomRect; // OBSOLETED in 1.92.X + //unsigned int FontBuilderFlags; // OBSOLETED in 1.92.0: Renamed to FontLoaderFlags. + //int TexDesiredWidth; // OBSOLETED in 1.92.0: Force texture width before calling Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + //typedef ImFontAtlasRect ImFontAtlasCustomRect; // OBSOLETED in 1.92.0 //typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+ //typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+ }; @@ -3805,7 +3833,7 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self, CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self, const void* compressed_font_data, int compressed_font_data_size, float size_pixels /* = 0.0f */, const ImFontConfig* font_cfg /* = NULL */, const ImWchar* glyph_ranges /* = NULL */); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self, const char* compressed_font_data_base85, float size_pixels /* = 0.0f */, const ImFontConfig* font_cfg /* = NULL */, const ImWchar* glyph_ranges /* = NULL */); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. CIMGUI_API void ImFontAtlas_RemoveFont(ImFontAtlas* self, ImFont* font); -CIMGUI_API void ImFontAtlas_Clear(ImFontAtlas* self); // Clear everything (input fonts, output glyphs/textures) +CIMGUI_API void ImFontAtlas_Clear(ImFontAtlas* self); // Clear everything (input fonts, output glyphs/textures). CIMGUI_API void ImFontAtlas_CompactCache(ImFontAtlas* self); // Compact cached glyphs and texture. CIMGUI_API void ImFontAtlas_SetFontLoader(ImFontAtlas* self, const ImFontLoader* font_loader); // Change font loader at runtime. // As we are transitioning toward a new font system, we expect to obsolete those soon: @@ -3817,7 +3845,7 @@ CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self); // - User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). // - The pitch is always = Width * BytesPerPixels (1 or 4) // - Building in RGBA32 format is provided for convenience and compatibility, but note that unless you manually manipulate or copy color data into -// the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste. +// the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste). // - From 1.92 with backends supporting ImGuiBackendFlags_RendererHasTextures: // - Calling Build(), GetTexDataAsAlpha8(), GetTexDataAsRGBA32() is not needed. // - In backend: replace calls to ImFontAtlas::SetTexID() with calls to ImTextureData::SetTexID() after honoring texture creation. @@ -3846,7 +3874,7 @@ CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesVietnamese(ImFontAtlas* self #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS // Register and retrieve custom rectangles // - You can request arbitrary rectangles to be packed into the atlas, for your own purpose. -// - Since 1.92.X, packing is done immediately in the function call (previously packing was done during the Build call) +// - Since 1.92.0, packing is done immediately in the function call (previously packing was done during the Build call) // - You can render your pixels into the texture right after calling the AddCustomRect() functions. // - VERY IMPORTANT: // - Texture may be created/resized at any time when calling ImGui or ImFontAtlas functions. @@ -3866,11 +3894,11 @@ CIMGUI_API void ImFontAtlas_RemoveCustomRect(ImFontAtlas* self, ImF CIMGUI_API bool ImFontAtlas_GetCustomRect(const ImFontAtlas* self, ImFontAtlasRectId id, ImFontAtlasRect* out_r); // Get rectangle coordinates for current texture. Valid immediately, never store this (read above)! // [Obsolete] #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS -CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRectRegular(ImFontAtlas* self, int w, int h); // RENAMED in 1.92.X -CIMGUI_API const ImFontAtlasRect* ImFontAtlas_GetCustomRectByIndex(ImFontAtlas* self, ImFontAtlasRectId id); // OBSOLETED in 1.92.X -CIMGUI_API void ImFontAtlas_CalcCustomRectUV(const ImFontAtlas* self, const ImFontAtlasRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max); // OBSOLETED in 1.92.X -CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRectFontGlyph(ImFontAtlas* self, ImFont* font, ImWchar codepoint, int w, int h, float advance_x, ImVec2 offset /* = ImVec2(0, 0) */); // OBSOLETED in 1.92.X: Use custom ImFontLoader in ImFontConfig -CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRectFontGlyphForSize(ImFontAtlas* self, ImFont* font, float font_size, ImWchar codepoint, int w, int h, float advance_x, ImVec2 offset /* = ImVec2(0, 0) */); // ADDED AND OBSOLETED in 1.92.X +CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRectRegular(ImFontAtlas* self, int w, int h); // RENAMED in 1.92.0 +CIMGUI_API const ImFontAtlasRect* ImFontAtlas_GetCustomRectByIndex(ImFontAtlas* self, ImFontAtlasRectId id); // OBSOLETED in 1.92.0 +CIMGUI_API void ImFontAtlas_CalcCustomRectUV(const ImFontAtlas* self, const ImFontAtlasRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max); // OBSOLETED in 1.92.0 +CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRectFontGlyph(ImFontAtlas* self, ImFont* font, ImWchar codepoint, int w, int h, float advance_x, ImVec2 offset /* = ImVec2(0, 0) */); // OBSOLETED in 1.92.0: Use custom ImFontLoader in ImFontConfig +CIMGUI_API ImFontAtlasRectId ImFontAtlas_AddCustomRectFontGlyphForSize(ImFontAtlas* self, ImFont* font, float font_size, ImWchar codepoint, int w, int h, float advance_x, ImVec2 offset /* = ImVec2(0, 0) */); // ADDED AND OBSOLETED in 1.92.0 #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS // Font runtime data for a given size @@ -3896,7 +3924,7 @@ struct ImFontBaked_t unsigned int LoadNoRenderOnLayout : 1; // 0 // // Enable a two-steps mode where CalcTextSize() calls will load AdvanceX *without* rendering/packing glyphs. Only advantagous if you know that the glyph is unlikely to actually be rendered, otherwise it is slower because we'd do one query on the first CalcTextSize and one query on the first Draw. int LastUsedFrame; // 4 // // Record of that time this was bounds ImGuiID BakedId; // 4 // // Unique ID for this baked storage - ImFont* ContainerFont; // 4-8 // in // Parent font + ImFont* OwnerFont; // 4-8 // in // Parent font void* FontLoaderDatas; // 4-8 // // Font loader opaque storage (per baked font * sources): single contiguous buffer allocated by imgui, passed to loader. }; CIMGUI_API void ImFontBaked_ClearOutputData(ImFontBaked* self); @@ -3917,14 +3945,14 @@ typedef enum // Font runtime data and rendering // - ImFontAtlas automatically loads a default embedded font for you if you didn't load one manually. -// - Since 1.92.X a font may be rendered as any size! Therefore a font doesn't have one specific size. +// - Since 1.92.0 a font may be rendered as any size! Therefore a font doesn't have one specific size. // - Use 'font->GetFontBaked(size)' to retrieve the ImFontBaked* corresponding to a given size. // - If you used g.Font + g.FontSize (which is frequent from the ImGui layer), you can use g.FontBaked as a shortcut, as g.FontBaked == g.Font->GetFontBaked(g.FontSize). struct ImFont_t { // [Internal] Members: Hot ~12-20 bytes ImFontBaked* LastBaked; // 4-8 // Cache last bound baked. NEVER USE DIRECTLY. Use GetFontBaked(). - ImFontAtlas* ContainerAtlas; // 4-8 // What we have been loaded into. + ImFontAtlas* OwnerAtlas; // 4-8 // What we have been loaded into. ImFontFlags Flags; // 4 // Font flags. float CurrentRasterizerDensity; // Current rasterizer density. This is a varying state of the font. @@ -3932,7 +3960,7 @@ struct ImFont_t // Conceptually Sources[] is the list of font sources merged to create this font. ImGuiID FontId; // Unique identifier for the font float LegacySize; // 4 // in // Font size passed to AddFont(). Use for old code calling PushFont() expecting to use that size. (use ImGui::GetFontBaked() to get font baked at current bound size). - ImVector_ImFontConfigPtr Sources; // 16 // in // List of sources. Pointers within ContainerAtlas->Sources[] + ImVector_ImFontConfigPtr Sources; // 16 // in // List of sources. Pointers within OwnerAtlas->Sources[] ImWchar EllipsisChar; // 2-4 // out // Character used for ellipsis rendering ('...'). ImWchar FallbackChar; // 2-4 // out // Character used if a glyph isn't found (U+FFFD, '?') ImU8 Used8kPagesMap[(IM_UNICODE_CODEPOINT_MAX +1)/8192/8]; // 1 bytes if ImWchar=ImWchar16, 16 bytes if ImWchar==ImWchar32. Store 1-bit for each block of 4K codepoints that has one active glyph. This is mainly used to facilitate iterations across all used codepoints. @@ -3950,12 +3978,12 @@ CIMGUI_API const char* ImFont_GetDebugName(const ImFont* self); // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. CIMGUI_API ImFontBaked* ImFont_GetFontBaked(ImFont* self, float font_size); // Implied density = -1.0f CIMGUI_API ImFontBaked* ImFont_GetFontBakedEx(ImFont* self, float font_size, float density /* = -1.0f */); // Get or create baked data for given size -CIMGUI_API ImVec2 ImFont_CalcTextSizeA(ImFont* self, float size, float max_width, float wrap_width, const char* text_begin); // Implied text_end = NULL, remaining = NULL -CIMGUI_API ImVec2 ImFont_CalcTextSizeAEx(ImFont* self, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end /* = NULL */, const char** remaining /* = NULL */); // utf8 +CIMGUI_API ImVec2 ImFont_CalcTextSizeA(ImFont* self, float size, float max_width, float wrap_width, const char* text_begin); // Implied text_end = NULL, out_remaining = NULL +CIMGUI_API ImVec2 ImFont_CalcTextSizeAEx(ImFont* self, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end /* = NULL */, const char** out_remaining /* = NULL */); CIMGUI_API const char* ImFont_CalcWordWrapPosition(ImFont* self, float size, const char* text, const char* text_end, float wrap_width); CIMGUI_API void ImFont_RenderChar(ImFont* self, ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ImWchar c); // Implied cpu_fine_clip = NULL CIMGUI_API void ImFont_RenderCharEx(ImFont* self, ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ImWchar c, const ImVec4* cpu_fine_clip /* = NULL */); -CIMGUI_API void ImFont_RenderText(ImFont* self, ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ImVec4 clip_rect, const char* text_begin, const char* text_end, float wrap_width /* = 0.0f */, bool cpu_fine_clip /* = false */); +CIMGUI_API void ImFont_RenderText(ImFont* self, ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ImVec4 clip_rect, const char* text_begin, const char* text_end, float wrap_width /* = 0.0f */, ImDrawTextFlags flags /* = 0 */); #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS CIMGUI_API const char* ImFont_CalcWordWrapPositionA(ImFont* self, float scale, const char* text, const char* text_end, float wrap_width); #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS @@ -4008,6 +4036,7 @@ struct ImGuiViewport_t ImVec2 WorkSize; // Work Area: Size of the viewport minus task bars, menu bars, status bars (<= Size) float DpiScale; // 1.0f = 96 DPI = No extra scale. ImGuiID ParentViewportId; // (Advanced) 0: no parent. Instruct the platform backend to setup a parent/child relationship between platform windows. + ImGuiViewport* ParentViewport; // (Advanced) Direct shortcut to ImGui::FindViewportByID(ParentViewportId). NULL: no parent. ImDrawData* DrawData; // The ImDrawData corresponding to this viewport. Valid after Render() and until the next call to NewFrame(). // Platform/Backend Dependent Data @@ -4092,7 +4121,7 @@ struct ImGuiPlatformIO_t void* Platform_ClipboardUserData; // Optional: Open link/folder/file in OS Shell - // (default to use ShellExecuteW() on Windows, system() on Linux/Mac) + // (default to use ShellExecuteW() on Windows, system() on Linux/Mac. expected to return false on failure, but some platforms may always return true) bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); void* Platform_OpenInShellUserData; @@ -4178,7 +4207,13 @@ struct ImGuiPlatformIO_t // Viewports list (the list is updated by calling ImGui::EndFrame or ImGui::Render) // (in the future we will attempt to organize this feature to remove the need for a "main viewport") ImVector_ImGuiViewportPtr Viewports; // Main viewports, followed by all secondary viewports. + + //------------------------------------------------------------------ + // Functions + //------------------------------------------------------------------ }; +CIMGUI_API void ImGuiPlatformIO_ClearPlatformHandlers(ImGuiPlatformIO* self); // Clear all Platform_XXX fields. Typically called on Platform Backend shutdown. +CIMGUI_API void ImGuiPlatformIO_ClearRendererHandlers(ImGuiPlatformIO* self); // Clear all Renderer_XXX fields. Typically called on Renderer Backend shutdown. // (Optional) This is required when enabling multi-viewport. Represent the bounds of each connected monitor/display and their DPI. // We use this information for multiple DPI support + clamping the position of popups and tooltips so they don't straddle multiple monitors. @@ -4231,10 +4266,10 @@ CIMGUI_API bool ImGui_ComboObsolete(const char* label, int* current_item, bool CIMGUI_API bool ImGui_ComboObsoleteEx(const char* label, int* current_item, bool (*old_callback)(void* user_data, int idx, const char** out_text), void* user_data, int items_count, int popup_max_height_in_items /* = -1 */); CIMGUI_API bool ImGui_ListBoxObsolete(const char* label, int* current_item, bool (*old_callback)(void* user_data, int idx, const char** out_text), void* user_data, int items_count); // Implied height_in_items = -1 CIMGUI_API bool ImGui_ListBoxObsoleteEx(const char* label, int* current_item, bool (*old_callback)(void* user_data, int idx, const char** out_text), void* user_data, int items_count, int height_in_items /* = -1 */); -// OBSOLETED in 1.89.7 (from June 2023) -CIMGUI_API void ImGui_SetItemAllowOverlap(void); // Use SetNextItemAllowOverlap() before item. // Some of the older obsolete names along with their replacement (commented out so they are not reported in IDE) +// OBSOLETED in 1.89.7 (from June 2023) +//IMGUI_API void SetItemAllowOverlap(); // Use SetNextItemAllowOverlap() _before_ item. //-- OBSOLETED in 1.89.4 (from March 2023) //static inline void PushAllowKeyboardFocus(bool tab_stop) { PushItemFlag(ImGuiItemFlags_NoTabStop, !tab_stop); } //static inline void PopAllowKeyboardFocus() { PopItemFlag(); } @@ -4299,7 +4334,7 @@ CIMGUI_API void ImGui_SetItemAllowOverlap(void); //static inline float GetWindowFontSize() { return GetFontSize(); } // OBSOLETED in 1.48 //static inline void SetScrollPosHere() { SetScrollHere(); } // OBSOLETED in 1.42 -//-- OBSOLETED in 1.92.x: ImFontAtlasCustomRect becomes ImTextureRect +//-- OBSOLETED in 1.92.0: ImFontAtlasCustomRect becomes ImTextureRect // - ImFontAtlasCustomRect::X,Y --> ImTextureRect::x,y // - ImFontAtlasCustomRect::Width,Height --> ImTextureRect::w,h // - ImFontAtlasCustomRect::GlyphColored --> if you need to write to this, instead you can write to 'font->Glyphs.back()->Colored' after calling AddCustomRectFontGlyph() @@ -4335,7 +4370,7 @@ typedef ImFontAtlasRect ImFontAtlasCustomRect; //}; // RENAMED and MERGED both ImGuiKey_ModXXX and ImGuiModFlags_XXX into ImGuiMod_XXX (from September 2022) -// RENAMED ImGuiKeyModFlags -> ImGuiModFlags in 1.88 (from April 2022). Exceptionally commented out ahead of obscolescence schedule to reduce confusion and because they were not meant to be used in the first place. +// RENAMED ImGuiKeyModFlags -> ImGuiModFlags in 1.88 (from April 2022). Exceptionally commented out ahead of obsolescence schedule to reduce confusion and because they were not meant to be used in the first place. //typedef ImGuiKeyChord ImGuiModFlags; // == int. We generally use ImGuiKeyChord to mean "a ImGuiKey or-ed with any number of ImGuiMod_XXX value", so you may store mods in there. //enum ImGuiModFlags_ { ImGuiModFlags_None = 0, ImGuiModFlags_Ctrl = ImGuiMod_Ctrl, ImGuiModFlags_Shift = ImGuiMod_Shift, ImGuiModFlags_Alt = ImGuiMod_Alt, ImGuiModFlags_Super = ImGuiMod_Super }; //typedef ImGuiKeyChord ImGuiKeyModFlags; // == int diff --git a/src/cached/dcimgui.json b/src/cached/dcimgui.json index 7c1edef..d1dc25e 100644 --- a/src/cached/dcimgui.json +++ b/src/cached/dcimgui.json @@ -2,22 +2,22 @@ "defines": [ { "name": "IMGUI_VERSION", - "content": "\"1.92.2b\"", - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 31 - } - }, - { - "name": "IMGUI_VERSION_NUM", - "content": "19222", + "content": "\"1.92.5\"", "is_internal": false, "source_location": { "filename": "imgui.h", "line": 32 } }, + { + "name": "IMGUI_VERSION_NUM", + "content": "19250", + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 33 + } + }, { "name": "IMGUI_HAS_TABLE", "comments": { @@ -26,7 +26,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 33 + "line": 34 } }, { @@ -37,7 +37,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 34 + "line": 35 } }, { @@ -48,7 +48,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 35 + "line": 36 } }, { @@ -59,7 +59,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 36 + "line": 37 } }, { @@ -89,7 +89,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 87 + "line": 88 } }, { @@ -104,7 +104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 90 + "line": 91 } }, { @@ -119,7 +119,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 120 + "line": 126 } }, { @@ -134,7 +134,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 121 + "line": 127 } }, { @@ -148,7 +148,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 123 + "line": 129 } }, { @@ -162,7 +162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 124 + "line": 130 } }, { @@ -177,7 +177,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 342 + "line": 350 } }, { @@ -189,7 +189,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1538 + "line": 1563 } }, { @@ -201,7 +201,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1539 + "line": 1564 } }, { @@ -213,7 +213,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2785 + "line": 2819 } }, { @@ -231,7 +231,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2787 + "line": 2821 } }, { @@ -249,7 +249,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2789 + "line": 2823 } }, { @@ -261,125 +261,125 @@ } ], "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 2966 - } - }, - { - "name": "IM_COL32_R_SHIFT", - "content": "16", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3002 - } - }, - { - "name": "IM_COL32_G_SHIFT", - "content": "8", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3003 - } - }, - { - "name": "IM_COL32_B_SHIFT", - "content": "0", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3004 - } - }, - { - "name": "IM_COL32_A_SHIFT", - "content": "24", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3005 - } - }, - { - "name": "IM_COL32_A_MASK", - "content": "0xFF000000", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3006 - } - }, - { - "name": "IM_COL32_R_SHIFT", - "content": "0", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifndef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, "source_location": { "filename": "imgui.h", "line": 3008 } }, + { + "name": "IM_COL32_R_SHIFT", + "content": "16", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3044 + } + }, + { + "name": "IM_COL32_G_SHIFT", + "content": "8", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3045 + } + }, + { + "name": "IM_COL32_B_SHIFT", + "content": "0", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3046 + } + }, + { + "name": "IM_COL32_A_SHIFT", + "content": "24", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3047 + } + }, + { + "name": "IM_COL32_A_MASK", + "content": "0xFF000000", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3048 + } + }, + { + "name": "IM_COL32_R_SHIFT", + "content": "0", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifndef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3050 + } + }, { "name": "IM_COL32_G_SHIFT", "content": "8", @@ -396,7 +396,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3009 + "line": 3051 } }, { @@ -415,7 +415,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3010 + "line": 3052 } }, { @@ -434,7 +434,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3011 + "line": 3053 } }, { @@ -453,7 +453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3012 + "line": 3054 } }, { @@ -468,7 +468,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3196 + "line": 3239 } }, { @@ -477,7 +477,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3673 + "line": 3718 } } ], @@ -495,7 +495,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1183 + "line": 1197 } }, { @@ -509,7 +509,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1184 + "line": 1198 } }, { @@ -523,7 +523,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1185 + "line": 1199 } }, { @@ -537,7 +537,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1186 + "line": 1200 } }, { @@ -551,7 +551,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1187 + "line": 1201 } }, { @@ -565,7 +565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1188 + "line": 1202 } }, { @@ -579,7 +579,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1189 + "line": 1203 } }, { @@ -593,7 +593,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1190 + "line": 1204 } }, { @@ -607,7 +607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1191 + "line": 1205 } }, { @@ -621,7 +621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1192 + "line": 1206 } }, { @@ -635,7 +635,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1193 + "line": 1207 } }, { @@ -649,7 +649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1194 + "line": 1208 } }, { @@ -663,7 +663,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1195 + "line": 1209 } }, { @@ -677,7 +677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1196 + "line": 1210 } }, { @@ -691,7 +691,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1197 + "line": 1211 } }, { @@ -705,7 +705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1198 + "line": 1212 } }, { @@ -719,7 +719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1199 + "line": 1213 } }, { @@ -733,7 +733,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1200 + "line": 1214 } }, { @@ -742,12 +742,12 @@ "value": 131072, "is_count": false, "comments": { - "attached": "// No focusing toward this window with keyboard/gamepad navigation (e.g. skipped by CTRL+TAB)" + "attached": "// No focusing toward this window with keyboard/gamepad navigation (e.g. skipped by Ctrl+Tab)" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1201 + "line": 1215 } }, { @@ -761,7 +761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1202 + "line": 1216 } }, { @@ -775,7 +775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1203 + "line": 1217 } }, { @@ -786,7 +786,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1204 + "line": 1218 } }, { @@ -797,7 +797,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1205 + "line": 1219 } }, { @@ -808,7 +808,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1206 + "line": 1220 } }, { @@ -825,7 +825,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1209 + "line": 1223 } }, { @@ -839,7 +839,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1210 + "line": 1224 } }, { @@ -853,7 +853,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1211 + "line": 1225 } }, { @@ -867,7 +867,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1212 + "line": 1226 } }, { @@ -881,7 +881,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1213 + "line": 1227 } }, { @@ -895,47 +895,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1214 - } - }, - { - "name": "ImGuiWindowFlags_NavFlattened", - "value_expression": "1<<29", - "value": 536870912, - "is_count": false, - "comments": { - "attached": "// Obsoleted in 1.90.9: Use ImGuiChildFlags_NavFlattened in BeginChild() call." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1218 - } - }, - { - "name": "ImGuiWindowFlags_AlwaysUseWindowPadding", - "value_expression": "1<<30", - "value": 1073741824, - "is_count": false, - "comments": { - "attached": "// Obsoleted in 1.90.0: Use ImGuiChildFlags_AlwaysUseWindowPadding in BeginChild() call." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1219 + "line": 1228 } } ], @@ -948,7 +908,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1181 + "line": 1195 } }, { @@ -964,7 +924,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1234 + "line": 1248 } }, { @@ -978,7 +938,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1235 + "line": 1249 } }, { @@ -992,7 +952,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1236 + "line": 1250 } }, { @@ -1006,7 +966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1237 + "line": 1251 } }, { @@ -1020,7 +980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1238 + "line": 1252 } }, { @@ -1034,7 +994,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1239 + "line": 1253 } }, { @@ -1048,7 +1008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1240 + "line": 1254 } }, { @@ -1062,7 +1022,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1241 + "line": 1255 } }, { @@ -1076,7 +1036,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1242 + "line": 1256 } }, { @@ -1090,34 +1050,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1243 - } - }, - { - "name": "ImGuiChildFlags_Border", - "value_expression": "ImGuiChildFlags_Borders", - "value": 1, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.91.1 (August 2024) for consistency." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1247 + "line": 1257 } } ], "comments": { "preceding": [ "// Flags for ImGui::BeginChild()", - "// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'.", + "// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'.)", "// About using AutoResizeX/AutoResizeY flags:", "// - May be combined with SetNextWindowSizeConstraints() to set a min/max size for each axis (see \"Demo->Child->Auto-resize with Constraints\").", "// - Size measurement for a given axis is only performed when the child window is within visible boundaries, or is just appearing.", @@ -1130,7 +1070,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1232 + "line": 1246 } }, { @@ -1149,7 +1089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1255 + "line": 1269 } }, { @@ -1163,7 +1103,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1256 + "line": 1270 } }, { @@ -1177,7 +1117,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1257 + "line": 1271 } }, { @@ -1191,7 +1131,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1258 + "line": 1272 } }, { @@ -1205,7 +1145,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1259 + "line": 1273 } }, { @@ -1219,7 +1159,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1260 + "line": 1274 } }, { @@ -1233,7 +1173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1261 + "line": 1275 } } ], @@ -1246,7 +1186,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1253 + "line": 1267 } }, { @@ -1267,7 +1207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1269 + "line": 1283 } }, { @@ -1281,7 +1221,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1270 + "line": 1284 } }, { @@ -1295,7 +1235,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1271 + "line": 1285 } }, { @@ -1309,7 +1249,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1272 + "line": 1286 } }, { @@ -1323,7 +1263,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1273 + "line": 1287 } }, { @@ -1337,7 +1277,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1274 + "line": 1288 } }, { @@ -1354,7 +1294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1277 + "line": 1291 } }, { @@ -1368,7 +1308,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1278 + "line": 1292 } }, { @@ -1382,7 +1322,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1279 + "line": 1293 } }, { @@ -1396,7 +1336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1280 + "line": 1294 } }, { @@ -1413,7 +1353,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1283 + "line": 1297 } }, { @@ -1427,7 +1367,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1284 + "line": 1298 } }, { @@ -1441,7 +1381,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1285 + "line": 1299 } }, { @@ -1455,7 +1395,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1286 + "line": 1300 } }, { @@ -1469,7 +1409,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1287 + "line": 1301 } }, { @@ -1483,7 +1423,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1288 + "line": 1302 } }, { @@ -1497,7 +1437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1289 + "line": 1303 } }, { @@ -1511,7 +1451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1290 + "line": 1304 } }, { @@ -1528,7 +1468,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1293 + "line": 1307 } }, { @@ -1545,7 +1485,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1296 + "line": 1310 } }, { @@ -1559,7 +1499,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1297 + "line": 1311 } }, { @@ -1573,7 +1513,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1298 + "line": 1312 } }, { @@ -1587,7 +1527,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1299 + "line": 1313 } }, { @@ -1601,7 +1541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1300 + "line": 1314 } }, { @@ -1615,7 +1555,30 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1301 + "line": 1315 + } + }, + { + "name": "ImGuiInputTextFlags_WordWrap", + "value_expression": "1<<24", + "value": 16777216, + "is_count": false, + "comments": { + "preceding": [ + "// Multi-line Word-Wrapping [BETA]", + "// - Not well tested yet. Please report any incorrect cursor movement, selection behavior etc. bug to https://github.com/ocornut/imgui/issues/3237.", + "// - Wrapping style is not ideal. Wrapping of long words/sections (e.g. words larger than total available width) may be particularly unpleasing.", + "// - Wrapping width needs to always account for the possibility of a vertical scrollbar.", + "// - It is much slower than regular text fields.", + "// Ballpark estimate of cost on my 2019 desktop PC: for a 100 KB text buffer: +~0.3 ms (Optimized) / +~1.0 ms (Debug build).", + "// The CPU cost is very roughly proportional to text length, so a 10 KB buffer should cost about ten times less." + ], + "attached": "// InputTextMultiline(): word-wrap lines that are too long." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1324 } } ], @@ -1628,7 +1591,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1266 + "line": 1280 } }, { @@ -1644,7 +1607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1310 + "line": 1333 } }, { @@ -1658,7 +1621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1311 + "line": 1334 } }, { @@ -1672,7 +1635,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1312 + "line": 1335 } }, { @@ -1686,7 +1649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1313 + "line": 1336 } }, { @@ -1700,7 +1663,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1314 + "line": 1337 } }, { @@ -1714,7 +1677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1315 + "line": 1338 } }, { @@ -1728,7 +1691,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1316 + "line": 1339 } }, { @@ -1742,7 +1705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1317 + "line": 1340 } }, { @@ -1756,7 +1719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1318 + "line": 1341 } }, { @@ -1770,7 +1733,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1319 + "line": 1342 } }, { @@ -1784,7 +1747,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1320 + "line": 1343 } }, { @@ -1798,7 +1761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1321 + "line": 1344 } }, { @@ -1812,7 +1775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1322 + "line": 1345 } }, { @@ -1826,7 +1789,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1323 + "line": 1346 } }, { @@ -1840,7 +1803,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1324 + "line": 1347 } }, { @@ -1854,7 +1817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1325 + "line": 1348 } }, { @@ -1868,7 +1831,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1326 + "line": 1349 } }, { @@ -1880,12 +1843,12 @@ "preceding": [ "//ImGuiTreeNodeFlags_NoScrollOnOpen = 1 << 16, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible" ], - "attached": "// Nav: left arrow moves back to parent. This is processed in TreePop() when there's an unfullfilled Left nav request remaining." + "attached": "// Nav: left arrow moves back to parent. This is processed in TreePop() when there's an unfulfilled Left nav request remaining." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1328 + "line": 1351 } }, { @@ -1896,7 +1859,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1329 + "line": 1352 } }, { @@ -1914,7 +1877,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1333 + "line": 1356 } }, { @@ -1928,7 +1891,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1334 + "line": 1357 } }, { @@ -1942,7 +1905,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1335 + "line": 1358 } }, { @@ -1962,7 +1925,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1338 + "line": 1361 } }, { @@ -1982,27 +1945,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1339 - } - }, - { - "name": "ImGuiTreeNodeFlags_AllowItemOverlap", - "value_expression": "ImGuiTreeNodeFlags_AllowOverlap", - "value": 4, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.89.7" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1340 + "line": 1362 } } ], @@ -2014,7 +1957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1308 + "line": 1331 } }, { @@ -2030,7 +1973,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1354 + "line": 1377 } }, { @@ -2044,7 +1987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1355 + "line": 1378 } }, { @@ -2058,7 +2001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1356 + "line": 1379 } }, { @@ -2072,7 +2015,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1357 + "line": 1380 } }, { @@ -2083,7 +2026,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1358 + "line": 1381 } }, { @@ -2094,7 +2037,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1359 + "line": 1382 } }, { @@ -2108,7 +2051,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1360 + "line": 1383 } }, { @@ -2125,7 +2068,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1362 + "line": 1385 } }, { @@ -2139,7 +2082,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1363 + "line": 1386 } }, { @@ -2153,7 +2096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1364 + "line": 1387 } }, { @@ -2167,7 +2110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1365 + "line": 1388 } }, { @@ -2178,7 +2121,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1366 + "line": 1389 } } ], @@ -2197,7 +2140,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1352 + "line": 1375 } }, { @@ -2213,7 +2156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1372 + "line": 1395 } }, { @@ -2227,7 +2170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1373 + "line": 1396 } }, { @@ -2241,7 +2184,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1374 + "line": 1397 } }, { @@ -2255,7 +2198,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1375 + "line": 1398 } }, { @@ -2269,7 +2212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1376 + "line": 1399 } }, { @@ -2283,7 +2226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1377 + "line": 1400 } }, { @@ -2297,7 +2240,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1378 + "line": 1401 + } + }, + { + "name": "ImGuiSelectableFlags_SelectOnNav", + "value_expression": "1<<6", + "value": 64, + "is_count": false, + "comments": { + "attached": "// Auto-select when moved into, unless Ctrl is held. Automatic when in a BeginMultiSelect() block." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1402 } }, { @@ -2317,27 +2274,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1381 - } - }, - { - "name": "ImGuiSelectableFlags_AllowItemOverlap", - "value_expression": "ImGuiSelectableFlags_AllowOverlap", - "value": 16, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.89.7" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1382 + "line": 1405 } } ], @@ -2349,7 +2286,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1370 + "line": 1393 } }, { @@ -2365,7 +2302,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1389 + "line": 1413 } }, { @@ -2379,7 +2316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1390 + "line": 1414 } }, { @@ -2393,7 +2330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1391 + "line": 1415 } }, { @@ -2407,7 +2344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1392 + "line": 1416 } }, { @@ -2421,7 +2358,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1393 + "line": 1417 } }, { @@ -2435,7 +2372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1394 + "line": 1418 } }, { @@ -2449,7 +2386,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1395 + "line": 1419 } }, { @@ -2463,7 +2400,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1396 + "line": 1420 } }, { @@ -2477,7 +2414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1397 + "line": 1421 } }, { @@ -2488,7 +2425,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1398 + "line": 1422 } } ], @@ -2500,7 +2437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1387 + "line": 1411 } }, { @@ -2516,7 +2453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1404 + "line": 1428 } }, { @@ -2530,7 +2467,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1405 + "line": 1429 } }, { @@ -2544,7 +2481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1406 + "line": 1430 } }, { @@ -2558,7 +2495,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1407 + "line": 1431 } }, { @@ -2572,7 +2509,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1408 + "line": 1432 } }, { @@ -2586,7 +2523,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1409 + "line": 1433 } }, { @@ -2600,7 +2537,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1410 + "line": 1434 } }, { @@ -2614,7 +2551,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1411 + "line": 1435 } }, { @@ -2631,7 +2568,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1414 + "line": 1438 } }, { @@ -2645,7 +2582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1415 + "line": 1439 } }, { @@ -2659,7 +2596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1416 + "line": 1440 } }, { @@ -2670,7 +2607,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1417 + "line": 1441 } }, { @@ -2681,7 +2618,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1418 + "line": 1442 } }, { @@ -2701,7 +2638,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1421 + "line": 1445 } } ], @@ -2713,7 +2650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1402 + "line": 1426 } }, { @@ -2729,7 +2666,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1428 + "line": 1452 } }, { @@ -2743,7 +2680,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1429 + "line": 1453 } }, { @@ -2757,7 +2694,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1430 + "line": 1454 } }, { @@ -2771,7 +2708,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1431 + "line": 1455 } }, { @@ -2785,7 +2722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1432 + "line": 1456 } }, { @@ -2799,7 +2736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1433 + "line": 1457 } }, { @@ -2813,7 +2750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1434 + "line": 1458 } }, { @@ -2827,7 +2764,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1435 + "line": 1459 } }, { @@ -2841,7 +2778,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1436 + "line": 1460 } }, { @@ -2855,7 +2792,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1437 + "line": 1461 } } ], @@ -2867,7 +2804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1426 + "line": 1450 } }, { @@ -2883,7 +2820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1443 + "line": 1467 } }, { @@ -2897,7 +2834,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1444 + "line": 1468 } }, { @@ -2911,7 +2848,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1445 + "line": 1469 } }, { @@ -2925,7 +2862,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1446 + "line": 1470 } }, { @@ -2939,7 +2876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1447 + "line": 1471 } }, { @@ -2953,7 +2890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1448 + "line": 1472 } }, { @@ -2964,7 +2901,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1449 + "line": 1473 } } ], @@ -2976,7 +2913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1441 + "line": 1465 } }, { @@ -2995,7 +2932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1457 + "line": 1481 } }, { @@ -3009,7 +2946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1458 + "line": 1482 } }, { @@ -3023,7 +2960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1459 + "line": 1483 } }, { @@ -3037,7 +2974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1460 + "line": 1484 } }, { @@ -3051,7 +2988,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1461 + "line": 1485 } }, { @@ -3065,7 +3002,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1462 + "line": 1486 } }, { @@ -3079,7 +3016,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1463 + "line": 1487 } }, { @@ -3096,7 +3033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1465 + "line": 1489 } }, { @@ -3110,7 +3047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1466 + "line": 1490 } }, { @@ -3124,7 +3061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1467 + "line": 1491 } }, { @@ -3138,7 +3075,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1468 + "line": 1492 } }, { @@ -3152,7 +3089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1469 + "line": 1493 } }, { @@ -3163,7 +3100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1470 + "line": 1494 } }, { @@ -3174,7 +3111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1471 + "line": 1495 } }, { @@ -3185,7 +3122,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1472 + "line": 1496 } }, { @@ -3198,7 +3135,7 @@ "// Tooltips mode", "// - typically used in IsItemHovered() + SetTooltip() sequence.", "// - this is a shortcut to pull flags from 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' where you can reconfigure desired behavior.", - "// e.g. 'TooltipHoveredFlagsForMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'.", + "// e.g. 'HoverFlagsForTooltipMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_AllowWhenDisabled'.", "// - for frequently actioned or hovered items providing a tooltip, you want may to use ImGuiHoveredFlags_ForTooltip (stationary + delay) so the tooltip doesn't show too often.", "// - for items which main purpose is to be hovered, or items with low affordance, or in less consistent apps, prefer no delay or shorter delay." ], @@ -3207,7 +3144,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1480 + "line": 1504 } }, { @@ -3226,7 +3163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1485 + "line": 1509 } }, { @@ -3240,7 +3177,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1486 + "line": 1510 } }, { @@ -3254,7 +3191,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1487 + "line": 1511 } }, { @@ -3268,7 +3205,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1488 + "line": 1512 } }, { @@ -3282,7 +3219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1489 + "line": 1513 } } ], @@ -3296,7 +3233,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1455 + "line": 1479 } }, { @@ -3312,7 +3249,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1497 + "line": 1521 } }, { @@ -3326,7 +3263,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1498 + "line": 1522 } }, { @@ -3343,7 +3280,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1500 + "line": 1524 } }, { @@ -3357,7 +3294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1501 + "line": 1525 } }, { @@ -3371,7 +3308,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1502 + "line": 1526 } }, { @@ -3385,7 +3322,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1503 + "line": 1527 } }, { @@ -3399,7 +3336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1504 + "line": 1528 } }, { @@ -3413,7 +3350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1505 + "line": 1529 } }, { @@ -3433,7 +3370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1508 + "line": 1532 } }, { @@ -3453,7 +3390,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1509 + "line": 1533 } } ], @@ -3467,7 +3404,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1495 + "line": 1519 } }, { @@ -3483,7 +3420,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1516 + "line": 1540 } }, { @@ -3500,7 +3437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1518 + "line": 1542 } }, { @@ -3514,7 +3451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1519 + "line": 1543 } }, { @@ -3528,7 +3465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1520 + "line": 1544 } }, { @@ -3542,7 +3479,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1521 + "line": 1545 } }, { @@ -3556,7 +3493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1522 + "line": 1546 } }, { @@ -3570,7 +3507,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1523 + "line": 1547 } }, { @@ -3584,7 +3521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1524 + "line": 1548 } }, { @@ -3598,7 +3535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1525 + "line": 1549 } }, { @@ -3615,7 +3552,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1527 + "line": 1551 } }, { @@ -3629,7 +3566,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1528 + "line": 1552 } }, { @@ -3643,7 +3580,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1529 + "line": 1553 + } + }, + { + "name": "ImGuiDragDropFlags_AcceptDrawAsHovered", + "value_expression": "1<<13", + "value": 8192, + "is_count": false, + "comments": { + "attached": "// Accepting item will render as if hovered. Useful for e.g. a Button() used as a drop target." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1554 } }, { @@ -3657,7 +3608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1530 + "line": 1555 } }, { @@ -3677,7 +3628,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1533 + "line": 1558 } } ], @@ -3689,7 +3640,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1514 + "line": 1538 } }, { @@ -3707,7 +3658,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1544 + "line": 1569 } }, { @@ -3720,7 +3671,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1545 + "line": 1570 } }, { @@ -3733,7 +3684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1546 + "line": 1571 } }, { @@ -3746,7 +3697,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1547 + "line": 1572 } }, { @@ -3759,7 +3710,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1548 + "line": 1573 } }, { @@ -3772,7 +3723,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1549 + "line": 1574 } }, { @@ -3785,7 +3736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1550 + "line": 1575 } }, { @@ -3798,7 +3749,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1551 + "line": 1576 } }, { @@ -3811,7 +3762,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1552 + "line": 1577 } }, { @@ -3824,7 +3775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1553 + "line": 1578 } }, { @@ -3837,7 +3788,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1554 + "line": 1579 } }, { @@ -3850,7 +3801,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1555 + "line": 1580 } }, { @@ -3860,7 +3811,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1556 + "line": 1581 } } ], @@ -3872,7 +3823,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1542 + "line": 1567 } }, { @@ -3895,7 +3846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1562 + "line": 1587 } }, { @@ -3906,7 +3857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1563 + "line": 1588 } }, { @@ -3917,7 +3868,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1564 + "line": 1589 } }, { @@ -3928,7 +3879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1565 + "line": 1590 } }, { @@ -3939,7 +3890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1566 + "line": 1591 } }, { @@ -3949,7 +3900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1567 + "line": 1592 } } ], @@ -3962,7 +3913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1560 + "line": 1585 } }, { @@ -3985,7 +3936,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1573 + "line": 1598 } }, { @@ -3999,7 +3950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1574 + "line": 1599 } }, { @@ -4013,7 +3964,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1575 + "line": 1600 } } ], @@ -4026,7 +3977,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1571 + "line": 1596 } }, { @@ -4054,7 +4005,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1587 + "line": 1612 } }, { @@ -4068,7 +4019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1588 + "line": 1613 } }, { @@ -4082,7 +4033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1590 + "line": 1615 } }, { @@ -4092,7 +4043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1591 + "line": 1616 } }, { @@ -4102,7 +4053,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1592 + "line": 1617 } }, { @@ -4112,7 +4063,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1593 + "line": 1618 } }, { @@ -4122,7 +4073,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1594 + "line": 1619 } }, { @@ -4132,7 +4083,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1595 + "line": 1620 } }, { @@ -4142,7 +4093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1596 + "line": 1621 } }, { @@ -4152,7 +4103,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1597 + "line": 1622 } }, { @@ -4162,7 +4113,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1598 + "line": 1623 } }, { @@ -4172,7 +4123,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1599 + "line": 1624 } }, { @@ -4182,7 +4133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1600 + "line": 1625 } }, { @@ -4192,7 +4143,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1601 + "line": 1626 } }, { @@ -4202,7 +4153,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1602 + "line": 1627 } }, { @@ -4212,7 +4163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1603 + "line": 1628 } }, { @@ -4222,7 +4173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1604 + "line": 1629 } }, { @@ -4232,7 +4183,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4242,7 +4193,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4252,7 +4203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4265,7 +4216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4275,7 +4226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4285,7 +4236,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4295,7 +4246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4305,7 +4256,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4315,7 +4266,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1607 + "line": 1632 } }, { @@ -4325,7 +4276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4335,7 +4286,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4345,7 +4296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4355,7 +4306,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4365,7 +4316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4375,7 +4326,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4385,7 +4336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4395,7 +4346,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4405,7 +4356,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4415,7 +4366,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4425,7 +4376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4435,7 +4386,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4445,7 +4396,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4455,7 +4406,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4465,7 +4416,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4475,7 +4426,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4485,7 +4436,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4495,7 +4446,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4505,7 +4456,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4515,7 +4466,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4525,7 +4476,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4535,7 +4486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4545,7 +4496,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4555,7 +4506,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4565,7 +4516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4575,7 +4526,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4585,7 +4536,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4595,7 +4546,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4605,7 +4556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4615,7 +4566,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4625,7 +4576,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4635,7 +4586,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4645,7 +4596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4655,7 +4606,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4665,7 +4616,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4675,7 +4626,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4685,7 +4636,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4695,7 +4646,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4705,7 +4656,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4715,7 +4666,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4725,7 +4676,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4735,7 +4686,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4745,7 +4696,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4755,7 +4706,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4765,7 +4716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4775,7 +4726,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4785,7 +4736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4795,7 +4746,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4805,7 +4756,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4815,7 +4766,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4825,7 +4776,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4835,7 +4786,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4845,7 +4796,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4855,7 +4806,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4865,7 +4816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4875,7 +4826,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4885,7 +4836,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4895,7 +4846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4905,7 +4856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4915,7 +4866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4928,7 +4879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1616 + "line": 1641 } }, { @@ -4941,7 +4892,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1617 + "line": 1642 } }, { @@ -4954,7 +4905,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1618 + "line": 1643 } }, { @@ -4967,7 +4918,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1619 + "line": 1644 } }, { @@ -4980,7 +4931,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1620 + "line": 1645 } }, { @@ -4993,7 +4944,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1621 + "line": 1646 } }, { @@ -5006,7 +4957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1622 + "line": 1647 } }, { @@ -5019,7 +4970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1623 + "line": 1648 } }, { @@ -5032,7 +4983,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1624 + "line": 1649 } }, { @@ -5045,7 +4996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1625 + "line": 1650 } }, { @@ -5058,7 +5009,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1626 + "line": 1651 } }, { @@ -5068,7 +5019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1627 + "line": 1652 } }, { @@ -5078,7 +5029,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1628 + "line": 1653 } }, { @@ -5088,7 +5039,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1629 + "line": 1654 } }, { @@ -5098,7 +5049,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1630 + "line": 1655 } }, { @@ -5108,7 +5059,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1631 + "line": 1656 } }, { @@ -5118,7 +5069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5128,7 +5079,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5138,7 +5089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5148,7 +5099,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5158,7 +5109,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5168,7 +5119,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5178,7 +5129,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5188,7 +5139,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5198,7 +5149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5208,7 +5159,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5218,7 +5169,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1634 + "line": 1659 } }, { @@ -5228,7 +5179,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1635 + "line": 1660 } }, { @@ -5238,7 +5189,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1636 + "line": 1661 } }, { @@ -5248,7 +5199,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1637 + "line": 1662 } }, { @@ -5258,7 +5209,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1638 + "line": 1663 } }, { @@ -5268,7 +5219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1639 + "line": 1664 } }, { @@ -5278,7 +5229,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1640 + "line": 1665 } }, { @@ -5291,7 +5242,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1641 + "line": 1666 } }, { @@ -5301,7 +5252,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1642 + "line": 1667 } }, { @@ -5314,7 +5265,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1643 + "line": 1668 } }, { @@ -5333,7 +5284,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1649 + "line": 1674 } }, { @@ -5346,7 +5297,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1650 + "line": 1675 } }, { @@ -5359,7 +5310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1651 + "line": 1676 } }, { @@ -5372,7 +5323,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1652 + "line": 1677 } }, { @@ -5385,7 +5336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1653 + "line": 1678 } }, { @@ -5398,7 +5349,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1654 + "line": 1679 } }, { @@ -5411,7 +5362,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1655 + "line": 1680 } }, { @@ -5424,7 +5375,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1656 + "line": 1681 } }, { @@ -5437,7 +5388,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1657 + "line": 1682 } }, { @@ -5450,7 +5401,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1658 + "line": 1683 } }, { @@ -5463,7 +5414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1659 + "line": 1684 } }, { @@ -5476,7 +5427,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1660 + "line": 1685 } }, { @@ -5489,7 +5440,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1661 + "line": 1686 } }, { @@ -5502,7 +5453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1662 + "line": 1687 } }, { @@ -5515,7 +5466,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1663 + "line": 1688 } }, { @@ -5528,7 +5479,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1664 + "line": 1689 } }, { @@ -5541,7 +5492,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1665 + "line": 1690 } }, { @@ -5554,7 +5505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1666 + "line": 1691 } }, { @@ -5567,7 +5518,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1667 + "line": 1692 } }, { @@ -5580,7 +5531,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1668 + "line": 1693 } }, { @@ -5593,7 +5544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1669 + "line": 1694 } }, { @@ -5606,7 +5557,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1670 + "line": 1695 } }, { @@ -5619,7 +5570,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1671 + "line": 1696 } }, { @@ -5632,7 +5583,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1672 + "line": 1697 } }, { @@ -5648,7 +5599,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5658,7 +5609,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5668,7 +5619,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5678,7 +5629,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5688,7 +5639,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5698,7 +5649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5708,7 +5659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5723,7 +5674,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5733,7 +5684,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5743,7 +5694,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5753,7 +5704,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5768,7 +5719,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1682 + "line": 1707 } }, { @@ -5779,7 +5730,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1683 + "line": 1708 } }, { @@ -5804,7 +5755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1695 + "line": 1720 } }, { @@ -5818,7 +5769,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1696 + "line": 1721 } }, { @@ -5832,7 +5783,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1697 + "line": 1722 } }, { @@ -5846,7 +5797,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1698 + "line": 1723 } }, { @@ -5860,7 +5811,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1699 + "line": 1724 } }, { @@ -5874,7 +5825,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1700 + "line": 1725 } }, { @@ -5883,7 +5834,7 @@ "value": 667, "is_count": true, "comments": { - "attached": "// Obsoleted in 1.91.5 because it was extremely misleading (since named keys don't start at 0 anymore)" + "attached": "// Obsoleted in 1.91.5 because it was misleading (since named keys don't start at 0 anymore)" }, "conditionals": [ { @@ -5894,7 +5845,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1703 + "line": 1728 } }, { @@ -5914,78 +5865,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1704 - } - }, - { - "name": "ImGuiKey_ModCtrl", - "value_expression": "ImGuiMod_Ctrl", - "value": 4096, - "is_count": false, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 - } - }, - { - "name": "ImGuiKey_ModShift", - "value_expression": "ImGuiMod_Shift", - "value": 8192, - "is_count": false, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 - } - }, - { - "name": "ImGuiKey_ModAlt", - "value_expression": "ImGuiMod_Alt", - "value": 16384, - "is_count": false, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 - } - }, - { - "name": "ImGuiKey_ModSuper", - "value_expression": "ImGuiMod_Super", - "value": 32768, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.89" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 + "line": 1729 } } ], @@ -6003,7 +5883,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1584 + "line": 1609 } }, { @@ -6019,7 +5899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1715 + "line": 1740 } }, { @@ -6033,7 +5913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1716 + "line": 1741 } }, { @@ -6052,7 +5932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1721 + "line": 1746 } }, { @@ -6066,7 +5946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1722 + "line": 1747 } }, { @@ -6080,7 +5960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1723 + "line": 1748 } }, { @@ -6094,7 +5974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1724 + "line": 1749 } }, { @@ -6111,7 +5991,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1726 + "line": 1751 } }, { @@ -6120,12 +6000,12 @@ "value": 32768, "is_count": false, "comments": { - "attached": "// Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. CTRL+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active." + "attached": "// Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. Ctrl+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1727 + "line": 1752 } }, { @@ -6139,7 +6019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1728 + "line": 1753 } }, { @@ -6153,7 +6033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1729 + "line": 1754 } }, { @@ -6170,7 +6050,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1732 + "line": 1757 } } ], @@ -6184,7 +6064,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1713 + "line": 1738 } }, { @@ -6200,7 +6080,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1738 + "line": 1763 } }, { @@ -6214,7 +6094,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1739 + "line": 1764 } }, { @@ -6228,7 +6108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1740 + "line": 1765 } }, { @@ -6242,7 +6122,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1741 + "line": 1766 } }, { @@ -6256,7 +6136,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1742 + "line": 1767 } }, { @@ -6270,7 +6150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1743 + "line": 1768 } }, { @@ -6287,7 +6167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1746 + "line": 1771 } }, { @@ -6305,7 +6185,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1750 + "line": 1775 } }, { @@ -6322,7 +6202,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1753 + "line": 1778 } }, { @@ -6336,7 +6216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1754 + "line": 1779 } }, { @@ -6356,7 +6236,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1757 + "line": 1782 } }, { @@ -6376,7 +6256,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1758 + "line": 1783 } }, { @@ -6396,7 +6276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1759 + "line": 1784 } }, { @@ -6416,7 +6296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1760 + "line": 1785 } } ], @@ -6428,7 +6308,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1736 + "line": 1761 } }, { @@ -6444,7 +6324,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1767 + "line": 1792 } }, { @@ -6458,7 +6338,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1768 + "line": 1793 } }, { @@ -6472,7 +6352,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1769 + "line": 1794 } }, { @@ -6486,7 +6366,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1770 + "line": 1795 } }, { @@ -6500,7 +6380,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1771 + "line": 1796 } }, { @@ -6514,30 +6394,44 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1772 + "line": 1797 } }, { - "name": "ImGuiBackendFlags_PlatformHasViewports", + "name": "ImGuiBackendFlags_RendererHasViewports", "value_expression": "1<<10", "value": 1024, "is_count": false, "comments": { "preceding": [ - "// [BETA] Viewports" + "// [BETA] Multi-Viewports" ], + "attached": "// Backend Renderer supports multiple viewports." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1800 + } + }, + { + "name": "ImGuiBackendFlags_PlatformHasViewports", + "value_expression": "1<<11", + "value": 2048, + "is_count": false, + "comments": { "attached": "// Backend Platform supports multiple viewports." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1775 + "line": 1801 } }, { "name": "ImGuiBackendFlags_HasMouseHoveredViewport", - "value_expression": "1<<11", - "value": 2048, + "value_expression": "1<<12", + "value": 4096, "is_count": false, "comments": { "attached": "// Backend Platform supports calling io.AddMouseViewportEvent() with the viewport under the mouse. IF POSSIBLE, ignore viewports with the ImGuiViewportFlags_NoInputs flag (Win32 backend, GLFW 3.30+ backend can do this, SDL backend cannot). If this cannot be done, Dear ImGui needs to use a flawed heuristic to find the viewport under." @@ -6545,21 +6439,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1776 + "line": 1802 } }, { - "name": "ImGuiBackendFlags_RendererHasViewports", - "value_expression": "1<<12", - "value": 4096, + "name": "ImGuiBackendFlags_HasParentViewport", + "value_expression": "1<<13", + "value": 8192, "is_count": false, "comments": { - "attached": "// Backend Renderer supports multiple viewports." + "attached": "// Backend Platform supports honoring viewport->ParentViewport/ParentViewportId value, by applying the corresponding parent/child relation at the Platform level." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1777 + "line": 1803 } } ], @@ -6571,7 +6465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1765 + "line": 1790 } }, { @@ -6586,7 +6480,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1783 + "line": 1809 } }, { @@ -6596,7 +6490,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1784 + "line": 1810 } }, { @@ -6609,7 +6503,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1785 + "line": 1811 } }, { @@ -6622,7 +6516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1786 + "line": 1812 } }, { @@ -6635,7 +6529,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1787 + "line": 1813 } }, { @@ -6645,7 +6539,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1788 + "line": 1814 } }, { @@ -6655,7 +6549,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1789 + "line": 1815 } }, { @@ -6668,7 +6562,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1790 + "line": 1816 } }, { @@ -6678,7 +6572,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1791 + "line": 1817 } }, { @@ -6688,7 +6582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1792 + "line": 1818 } }, { @@ -6701,7 +6595,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1793 + "line": 1819 } }, { @@ -6714,7 +6608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1794 + "line": 1820 } }, { @@ -6727,7 +6621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1795 + "line": 1821 } }, { @@ -6737,7 +6631,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1796 + "line": 1822 } }, { @@ -6747,7 +6641,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1797 + "line": 1823 } }, { @@ -6757,7 +6651,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1798 + "line": 1824 } }, { @@ -6767,7 +6661,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1799 + "line": 1825 } }, { @@ -6777,7 +6671,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1800 + "line": 1826 } }, { @@ -6790,7 +6684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1801 + "line": 1827 } }, { @@ -6800,7 +6694,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1802 + "line": 1828 } }, { @@ -6810,7 +6704,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1803 + "line": 1829 } }, { @@ -6820,7 +6714,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1804 + "line": 1830 } }, { @@ -6830,7 +6724,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1805 + "line": 1831 } }, { @@ -6840,7 +6734,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1806 + "line": 1832 } }, { @@ -6853,7 +6747,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1807 + "line": 1833 } }, { @@ -6863,7 +6757,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1808 + "line": 1834 } }, { @@ -6873,7 +6767,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1809 + "line": 1835 } }, { @@ -6883,7 +6777,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1810 + "line": 1836 } }, { @@ -6893,7 +6787,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1811 + "line": 1837 } }, { @@ -6903,7 +6797,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1812 + "line": 1838 } }, { @@ -6916,7 +6810,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1813 + "line": 1839 } }, { @@ -6926,7 +6820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1814 + "line": 1840 } }, { @@ -6936,7 +6830,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1815 + "line": 1841 } }, { @@ -6949,7 +6843,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1816 + "line": 1842 } }, { @@ -6962,7 +6856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1817 + "line": 1843 } }, { @@ -6975,7 +6869,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1818 + "line": 1844 } }, { @@ -6988,7 +6882,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1819 + "line": 1845 } }, { @@ -7001,7 +6895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1820 + "line": 1846 } }, { @@ -7014,7 +6908,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1821 + "line": 1847 } }, { @@ -7027,7 +6921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1822 + "line": 1848 } }, { @@ -7040,7 +6934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1823 + "line": 1849 } }, { @@ -7053,7 +6947,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1824 + "line": 1850 } }, { @@ -7066,7 +6960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1825 + "line": 1851 } }, { @@ -7076,7 +6970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1826 + "line": 1852 } }, { @@ -7086,7 +6980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1827 + "line": 1853 } }, { @@ -7096,7 +6990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1828 + "line": 1854 } }, { @@ -7106,7 +7000,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1829 + "line": 1855 } }, { @@ -7119,7 +7013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1830 + "line": 1856 } }, { @@ -7132,7 +7026,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1831 + "line": 1857 } }, { @@ -7145,7 +7039,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1832 + "line": 1858 } }, { @@ -7158,7 +7052,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1833 + "line": 1859 } }, { @@ -7171,7 +7065,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1834 + "line": 1860 } }, { @@ -7184,7 +7078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1835 + "line": 1861 } }, { @@ -7197,7 +7091,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1836 + "line": 1862 } }, { @@ -7210,7 +7104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1837 + "line": 1863 } }, { @@ -7218,17 +7112,43 @@ "value": 55, "is_count": false, "comments": { - "attached": "// Rectangle highlighting a drop target" + "attached": "// Rectangle border highlighting a drop target" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1838 + "line": 1864 + } + }, + { + "name": "ImGuiCol_DragDropTargetBg", + "value": 56, + "is_count": false, + "comments": { + "attached": "// Rectangle background highlighting a drop target" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1865 + } + }, + { + "name": "ImGuiCol_UnsavedMarker", + "value": 57, + "is_count": false, + "comments": { + "attached": "// Unsaved Document marker (in window title and tabs)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1866 } }, { "name": "ImGuiCol_NavCursor", - "value": 56, + "value": 58, "is_count": false, "comments": { "attached": "// Color of keyboard/gamepad navigation cursor/rectangle, when visible" @@ -7236,38 +7156,38 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1839 + "line": 1867 } }, { "name": "ImGuiCol_NavWindowingHighlight", - "value": 57, + "value": 59, "is_count": false, "comments": { - "attached": "// Highlight window when using CTRL+TAB" + "attached": "// Highlight window when using Ctrl+Tab" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1840 + "line": 1868 } }, { "name": "ImGuiCol_NavWindowingDimBg", - "value": 58, + "value": 60, "is_count": false, "comments": { - "attached": "// Darken/colorize entire screen behind the CTRL+TAB window list, when active" + "attached": "// Darken/colorize entire screen behind the Ctrl+Tab window list, when active" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1841 + "line": 1869 } }, { "name": "ImGuiCol_ModalWindowDimBg", - "value": 59, + "value": 61, "is_count": false, "comments": { "attached": "// Darken/colorize entire screen behind a modal window, when one is active" @@ -7275,17 +7195,17 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1842 + "line": 1870 } }, { "name": "ImGuiCol_COUNT", - "value": 60, + "value": 62, "is_count": true, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1843 + "line": 1871 } }, { @@ -7305,7 +7225,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1846 + "line": 1874 } }, { @@ -7325,7 +7245,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1847 + "line": 1875 } }, { @@ -7345,13 +7265,13 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1848 + "line": 1876 } }, { "name": "ImGuiCol_NavHighlight", "value_expression": "ImGuiCol_NavCursor", - "value": 56, + "value": 58, "is_count": false, "comments": { "attached": "// [renamed in 1.91.4]" @@ -7365,7 +7285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1849 + "line": 1877 } } ], @@ -7377,7 +7297,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1781 + "line": 1807 } }, { @@ -7398,7 +7318,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1864 + "line": 1892 } }, { @@ -7411,7 +7331,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1865 + "line": 1893 } }, { @@ -7424,7 +7344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1866 + "line": 1894 } }, { @@ -7437,7 +7357,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1867 + "line": 1895 } }, { @@ -7450,7 +7370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1868 + "line": 1896 } }, { @@ -7463,7 +7383,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1869 + "line": 1897 } }, { @@ -7476,7 +7396,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1870 + "line": 1898 } }, { @@ -7489,7 +7409,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1871 + "line": 1899 } }, { @@ -7502,7 +7422,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1872 + "line": 1900 } }, { @@ -7515,7 +7435,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1873 + "line": 1901 } }, { @@ -7528,7 +7448,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1874 + "line": 1902 } }, { @@ -7541,7 +7461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1875 + "line": 1903 } }, { @@ -7554,7 +7474,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1876 + "line": 1904 } }, { @@ -7567,7 +7487,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1877 + "line": 1905 } }, { @@ -7580,7 +7500,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1878 + "line": 1906 } }, { @@ -7593,7 +7513,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1879 + "line": 1907 } }, { @@ -7606,7 +7526,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1880 + "line": 1908 } }, { @@ -7619,7 +7539,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1881 + "line": 1909 } }, { @@ -7632,7 +7552,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1882 + "line": 1910 } }, { @@ -7645,12 +7565,25 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1883 + "line": 1911 + } + }, + { + "name": "ImGuiStyleVar_ScrollbarPadding", + "value": 20, + "is_count": false, + "comments": { + "attached": "// float ScrollbarPadding" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1912 } }, { "name": "ImGuiStyleVar_GrabMinSize", - "value": 20, + "value": 21, "is_count": false, "comments": { "attached": "// float GrabMinSize" @@ -7658,12 +7591,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1884 + "line": 1913 } }, { "name": "ImGuiStyleVar_GrabRounding", - "value": 21, + "value": 22, "is_count": false, "comments": { "attached": "// float GrabRounding" @@ -7671,12 +7604,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1885 + "line": 1914 } }, { "name": "ImGuiStyleVar_ImageBorderSize", - "value": 22, + "value": 23, "is_count": false, "comments": { "attached": "// float ImageBorderSize" @@ -7684,12 +7617,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1886 + "line": 1915 } }, { "name": "ImGuiStyleVar_TabRounding", - "value": 23, + "value": 24, "is_count": false, "comments": { "attached": "// float TabRounding" @@ -7697,12 +7630,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1887 + "line": 1916 } }, { "name": "ImGuiStyleVar_TabBorderSize", - "value": 24, + "value": 25, "is_count": false, "comments": { "attached": "// float TabBorderSize" @@ -7710,12 +7643,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1888 + "line": 1917 } }, { "name": "ImGuiStyleVar_TabMinWidthBase", - "value": 25, + "value": 26, "is_count": false, "comments": { "attached": "// float TabMinWidthBase" @@ -7723,12 +7656,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1889 + "line": 1918 } }, { "name": "ImGuiStyleVar_TabMinWidthShrink", - "value": 26, + "value": 27, "is_count": false, "comments": { "attached": "// float TabMinWidthShrink" @@ -7736,12 +7669,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1890 + "line": 1919 } }, { "name": "ImGuiStyleVar_TabBarBorderSize", - "value": 27, + "value": 28, "is_count": false, "comments": { "attached": "// float TabBarBorderSize" @@ -7749,12 +7682,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1891 + "line": 1920 } }, { "name": "ImGuiStyleVar_TabBarOverlineSize", - "value": 28, + "value": 29, "is_count": false, "comments": { "attached": "// float TabBarOverlineSize" @@ -7762,12 +7695,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1892 + "line": 1921 } }, { "name": "ImGuiStyleVar_TableAngledHeadersAngle", - "value": 29, + "value": 30, "is_count": false, "comments": { "attached": "// float TableAngledHeadersAngle" @@ -7775,12 +7708,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1893 + "line": 1922 } }, { "name": "ImGuiStyleVar_TableAngledHeadersTextAlign", - "value": 30, + "value": 31, "is_count": false, "comments": { "attached": "// ImVec2 TableAngledHeadersTextAlign" @@ -7788,12 +7721,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1894 + "line": 1923 } }, { "name": "ImGuiStyleVar_TreeLinesSize", - "value": 31, + "value": 32, "is_count": false, "comments": { "attached": "// float TreeLinesSize" @@ -7801,12 +7734,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1895 + "line": 1924 } }, { "name": "ImGuiStyleVar_TreeLinesRounding", - "value": 32, + "value": 33, "is_count": false, "comments": { "attached": "// float TreeLinesRounding" @@ -7814,12 +7747,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1896 + "line": 1925 } }, { "name": "ImGuiStyleVar_ButtonTextAlign", - "value": 33, + "value": 34, "is_count": false, "comments": { "attached": "// ImVec2 ButtonTextAlign" @@ -7827,12 +7760,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1897 + "line": 1926 } }, { "name": "ImGuiStyleVar_SelectableTextAlign", - "value": 34, + "value": 35, "is_count": false, "comments": { "attached": "// ImVec2 SelectableTextAlign" @@ -7840,12 +7773,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1898 + "line": 1927 } }, { "name": "ImGuiStyleVar_SeparatorTextBorderSize", - "value": 35, + "value": 36, "is_count": false, "comments": { "attached": "// float SeparatorTextBorderSize" @@ -7853,12 +7786,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1899 + "line": 1928 } }, { "name": "ImGuiStyleVar_SeparatorTextAlign", - "value": 36, + "value": 37, "is_count": false, "comments": { "attached": "// ImVec2 SeparatorTextAlign" @@ -7866,12 +7799,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1900 + "line": 1929 } }, { "name": "ImGuiStyleVar_SeparatorTextPadding", - "value": 37, + "value": 38, "is_count": false, "comments": { "attached": "// ImVec2 SeparatorTextPadding" @@ -7879,12 +7812,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1901 + "line": 1930 } }, { "name": "ImGuiStyleVar_DockingSeparatorSize", - "value": 38, + "value": 39, "is_count": false, "comments": { "attached": "// float DockingSeparatorSize" @@ -7892,17 +7825,17 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1902 + "line": 1931 } }, { "name": "ImGuiStyleVar_COUNT", - "value": 39, + "value": 40, "is_count": true, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1903 + "line": 1932 } } ], @@ -7912,16 +7845,16 @@ "// - The enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code.", "// During initialization or between frames, feel free to just poke into ImGuiStyle directly.", "// - Tip: Use your programming IDE navigation facilities on the names in the _second column_ below to find the actual members and their description.", - "// - In Visual Studio: CTRL+comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas CTRL+F12 (\"Edit.GoToImplementation\") cannot.", - "// - In Visual Studio w/ Visual Assist installed: ALT+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", - "// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments.", + "// - In Visual Studio: Ctrl+Comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas Ctrl+F12 (\"Edit.GoToImplementation\") cannot.", + "// - In Visual Studio w/ Visual Assist installed: Alt+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", + "// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments.", "// - When changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type." ] }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1861 + "line": 1889 } }, { @@ -7937,7 +7870,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1909 + "line": 1938 } }, { @@ -7951,7 +7884,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1910 + "line": 1939 } }, { @@ -7965,7 +7898,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1911 + "line": 1940 } }, { @@ -7979,7 +7912,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1912 + "line": 1941 } }, { @@ -7993,7 +7926,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1913 + "line": 1942 } }, { @@ -8007,7 +7940,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1914 + "line": 1943 } } ], @@ -8019,7 +7952,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1907 + "line": 1936 } }, { @@ -8035,7 +7968,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1920 + "line": 1949 } }, { @@ -8049,7 +7982,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1921 + "line": 1950 } }, { @@ -8063,7 +7996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1922 + "line": 1951 } }, { @@ -8077,7 +8010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1923 + "line": 1952 } }, { @@ -8091,7 +8024,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1924 + "line": 1953 } }, { @@ -8105,7 +8038,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1925 + "line": 1954 } }, { @@ -8119,7 +8052,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1926 + "line": 1955 } }, { @@ -8133,7 +8066,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1927 + "line": 1956 } }, { @@ -8147,7 +8080,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1928 + "line": 1957 } }, { @@ -8161,7 +8094,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1929 + "line": 1958 } }, { @@ -8175,7 +8108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1930 + "line": 1959 } }, { @@ -8195,7 +8128,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1936 + "line": 1965 } }, { @@ -8209,7 +8142,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1937 + "line": 1966 } }, { @@ -8223,7 +8156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1938 + "line": 1967 } }, { @@ -8240,7 +8173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1941 + "line": 1970 } }, { @@ -8254,7 +8187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1942 + "line": 1971 } }, { @@ -8268,7 +8201,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1943 + "line": 1972 } }, { @@ -8282,7 +8215,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1944 + "line": 1973 } }, { @@ -8296,7 +8229,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1945 + "line": 1974 } }, { @@ -8310,7 +8243,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1946 + "line": 1975 } }, { @@ -8324,7 +8257,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1947 + "line": 1976 } }, { @@ -8338,7 +8271,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1948 + "line": 1977 } }, { @@ -8352,7 +8285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1949 + "line": 1978 } }, { @@ -8366,7 +8299,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1950 + "line": 1979 } }, { @@ -8380,7 +8313,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1951 + "line": 1980 } }, { @@ -8397,7 +8330,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1955 + "line": 1984 } }, { @@ -8413,7 +8346,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1958 + "line": 1987 } }, { @@ -8424,7 +8357,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1959 + "line": 1988 } }, { @@ -8435,7 +8368,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1960 + "line": 1989 } }, { @@ -8446,7 +8379,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1961 + "line": 1990 } }, { @@ -8457,7 +8390,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1962 + "line": 1991 } }, { @@ -8466,7 +8399,7 @@ "value": 0, "is_count": false, "comments": { - "attached": "// [Removed in 1.91.8] This is the default now. Will display a checkerboard unless ImGuiColorEditFlags_AlphaNoBg is set." + "attached": "// Removed in 1.91.8. This is the default now. Will display a checkerboard unless ImGuiColorEditFlags_AlphaNoBg is set." }, "conditionals": [ { @@ -8477,7 +8410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1966 + "line": 1995 } } ], @@ -8489,7 +8422,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1918 + "line": 1947 } }, { @@ -8505,7 +8438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1976 + "line": 2005 } }, { @@ -8519,7 +8452,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1977 + "line": 2006 } }, { @@ -8533,7 +8466,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1978 + "line": 2007 } }, { @@ -8542,12 +8475,12 @@ "value": 128, "is_count": false, "comments": { - "attached": "// Disable CTRL+Click or Enter key allowing to input text directly into the widget." + "attached": "// Disable Ctrl+Click or Enter key allowing to input text directly into the widget." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1979 + "line": 2008 } }, { @@ -8561,7 +8494,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1980 + "line": 2009 } }, { @@ -8570,12 +8503,12 @@ "value": 512, "is_count": false, "comments": { - "attached": "// Clamp value to min/max bounds when input manually with CTRL+Click. By default CTRL+Click allows going out of bounds." + "attached": "// Clamp value to min/max bounds when input manually with Ctrl+Click. By default Ctrl+Click allows going out of bounds." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1981 + "line": 2010 } }, { @@ -8589,7 +8522,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1982 + "line": 2011 } }, { @@ -8603,7 +8536,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1983 + "line": 2012 } }, { @@ -8614,7 +8547,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1984 + "line": 2013 } }, { @@ -8628,7 +8561,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1985 + "line": 2014 } } ], @@ -8642,7 +8575,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1974 + "line": 2003 } }, { @@ -8658,7 +8591,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1992 + "line": 2021 } }, { @@ -8669,7 +8602,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1993 + "line": 2022 } }, { @@ -8680,7 +8613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1994 + "line": 2023 } }, { @@ -8691,7 +8624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1995 + "line": 2024 } } ], @@ -8704,7 +8637,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1990 + "line": 2019 } }, { @@ -8720,7 +8653,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2002 + "line": 2031 } }, { @@ -8731,7 +8664,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2003 + "line": 2032 } }, { @@ -8744,7 +8677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2004 + "line": 2033 } }, { @@ -8757,7 +8690,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2005 + "line": 2034 } }, { @@ -8770,7 +8703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2006 + "line": 2035 } }, { @@ -8783,7 +8716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2007 + "line": 2036 } }, { @@ -8796,7 +8729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2008 + "line": 2037 } }, { @@ -8809,7 +8742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2009 + "line": 2038 } }, { @@ -8822,7 +8755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2010 + "line": 2039 } }, { @@ -8835,7 +8768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2011 + "line": 2040 } }, { @@ -8848,7 +8781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2012 + "line": 2041 } }, { @@ -8861,7 +8794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2013 + "line": 2042 } }, { @@ -8871,7 +8804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2014 + "line": 2043 } } ], @@ -8884,7 +8817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2000 + "line": 2029 } }, { @@ -8910,7 +8843,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2023 + "line": 2052 } }, { @@ -8923,7 +8856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2024 + "line": 2053 } }, { @@ -8936,7 +8869,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2025 + "line": 2054 } }, { @@ -8946,7 +8879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2026 + "line": 2055 } } ], @@ -8962,7 +8895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2021 + "line": 2050 } }, { @@ -8981,7 +8914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2034 + "line": 2063 } }, { @@ -8995,7 +8928,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2035 + "line": 2064 } }, { @@ -9009,7 +8942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2036 + "line": 2065 } }, { @@ -9023,7 +8956,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2037 + "line": 2066 } }, { @@ -9037,7 +8970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2038 + "line": 2067 } } ], @@ -9051,7 +8984,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2032 + "line": 2061 } }, { @@ -9072,7 +9005,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2070 + "line": 2099 } }, { @@ -9086,7 +9019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2071 + "line": 2100 } }, { @@ -9100,7 +9033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2072 + "line": 2101 } }, { @@ -9114,7 +9047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2073 + "line": 2102 } }, { @@ -9128,7 +9061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2074 + "line": 2103 } }, { @@ -9142,7 +9075,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2075 + "line": 2104 } }, { @@ -9156,7 +9089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2076 + "line": 2105 } }, { @@ -9173,7 +9106,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2078 + "line": 2107 } }, { @@ -9187,7 +9120,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2079 + "line": 2108 } }, { @@ -9201,7 +9134,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2080 + "line": 2109 } }, { @@ -9215,7 +9148,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2081 + "line": 2110 } }, { @@ -9229,7 +9162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2082 + "line": 2111 } }, { @@ -9243,7 +9176,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2083 + "line": 2112 } }, { @@ -9257,7 +9190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2084 + "line": 2113 } }, { @@ -9271,7 +9204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2085 + "line": 2114 } }, { @@ -9285,7 +9218,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2086 + "line": 2115 } }, { @@ -9299,7 +9232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2087 + "line": 2116 } }, { @@ -9313,7 +9246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2088 + "line": 2117 } }, { @@ -9327,7 +9260,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2089 + "line": 2118 } }, { @@ -9344,7 +9277,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2091 + "line": 2120 } }, { @@ -9358,7 +9291,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2092 + "line": 2121 } }, { @@ -9372,7 +9305,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2093 + "line": 2122 } }, { @@ -9386,7 +9319,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2094 + "line": 2123 } }, { @@ -9403,7 +9336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2096 + "line": 2125 } }, { @@ -9417,7 +9350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2097 + "line": 2126 } }, { @@ -9431,7 +9364,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2098 + "line": 2127 } }, { @@ -9445,7 +9378,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2099 + "line": 2128 } }, { @@ -9462,7 +9395,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2101 + "line": 2130 } }, { @@ -9479,7 +9412,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2103 + "line": 2132 } }, { @@ -9493,7 +9426,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2104 + "line": 2133 } }, { @@ -9507,7 +9440,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2105 + "line": 2134 } }, { @@ -9524,7 +9457,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2107 + "line": 2136 } }, { @@ -9538,7 +9471,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2108 + "line": 2137 } }, { @@ -9555,7 +9488,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2110 + "line": 2139 } }, { @@ -9569,7 +9502,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2111 + "line": 2140 } }, { @@ -9586,7 +9519,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2113 + "line": 2142 } }, { @@ -9602,7 +9535,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2116 + "line": 2145 } } ], @@ -9635,7 +9568,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2067 + "line": 2096 } }, { @@ -9656,7 +9589,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2123 + "line": 2152 } }, { @@ -9670,7 +9603,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2124 + "line": 2153 } }, { @@ -9684,7 +9617,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2125 + "line": 2154 } }, { @@ -9698,7 +9631,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2126 + "line": 2155 } }, { @@ -9712,7 +9645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2127 + "line": 2156 } }, { @@ -9726,7 +9659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2128 + "line": 2157 } }, { @@ -9740,7 +9673,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2129 + "line": 2158 } }, { @@ -9754,7 +9687,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2130 + "line": 2159 } }, { @@ -9768,7 +9701,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2131 + "line": 2160 } }, { @@ -9782,7 +9715,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2132 + "line": 2161 } }, { @@ -9796,7 +9729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2133 + "line": 2162 } }, { @@ -9810,7 +9743,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2134 + "line": 2163 } }, { @@ -9824,7 +9757,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2135 + "line": 2164 } }, { @@ -9838,7 +9771,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2136 + "line": 2165 } }, { @@ -9852,7 +9785,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2137 + "line": 2166 } }, { @@ -9866,7 +9799,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2138 + "line": 2167 } }, { @@ -9880,7 +9813,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2139 + "line": 2168 } }, { @@ -9894,7 +9827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2140 + "line": 2169 } }, { @@ -9908,7 +9841,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2141 + "line": 2170 } }, { @@ -9922,7 +9855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2142 + "line": 2171 } }, { @@ -9939,7 +9872,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2145 + "line": 2174 } }, { @@ -9953,7 +9886,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2146 + "line": 2175 } }, { @@ -9967,7 +9900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2147 + "line": 2176 } }, { @@ -9981,7 +9914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2148 + "line": 2177 } }, { @@ -9997,7 +9930,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2151 + "line": 2180 } }, { @@ -10008,7 +9941,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2152 + "line": 2181 } }, { @@ -10019,7 +9952,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2153 + "line": 2182 } }, { @@ -10033,7 +9966,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2154 + "line": 2183 } } ], @@ -10045,7 +9978,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2120 + "line": 2149 } }, { @@ -10061,7 +9994,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2160 + "line": 2189 } }, { @@ -10075,7 +10008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2161 + "line": 2190 } } ], @@ -10087,7 +10020,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2158 + "line": 2187 } }, { @@ -10103,7 +10036,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2175 + "line": 2204 } }, { @@ -10117,7 +10050,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2176 + "line": 2205 } }, { @@ -10131,7 +10064,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2177 + "line": 2206 } }, { @@ -10145,7 +10078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2178 + "line": 2207 } } ], @@ -10165,7 +10098,49 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2173 + "line": 2202 + } + }, + { + "name": "ImGuiListClipperFlags_", + "original_fully_qualified_name": "ImGuiListClipperFlags_", + "is_flags_enum": true, + "elements": [ + { + "name": "ImGuiListClipperFlags_None", + "value_expression": "0", + "value": 0, + "is_count": false, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2941 + } + }, + { + "name": "ImGuiListClipperFlags_NoSetTableRowCounters", + "value_expression": "1<<0", + "value": 1, + "is_count": false, + "comments": { + "attached": "// [Internal] Disabled modifying table row counters. Avoid assumption that 1 clipper item == 1 table row." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2942 + } + } + ], + "comments": { + "preceding": [ + "// Flags for ImGuiListClipper (currently not fully exposed in function calls: a future refactor will likely add this to ImGuiListClipper::Begin function equivalent)" + ] + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2939 } }, { @@ -10181,7 +10156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3084 + "line": 3126 } }, { @@ -10195,7 +10170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3085 + "line": 3127 } }, { @@ -10204,12 +10179,12 @@ "value": 2, "is_count": false, "comments": { - "attached": "// Disable CTRL+A shortcut to select all." + "attached": "// Disable Ctrl+A shortcut to select all." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3086 + "line": 3128 } }, { @@ -10223,7 +10198,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3087 + "line": 3129 } }, { @@ -10237,7 +10212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3088 + "line": 3130 } }, { @@ -10251,7 +10226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3089 + "line": 3131 } }, { @@ -10265,7 +10240,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3090 + "line": 3132 } }, { @@ -10279,7 +10254,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3091 + "line": 3133 } }, { @@ -10293,7 +10268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3092 + "line": 3134 } }, { @@ -10307,7 +10282,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3093 + "line": 3135 } }, { @@ -10321,7 +10296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3094 + "line": 3136 } }, { @@ -10335,7 +10310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3095 + "line": 3137 } }, { @@ -10349,7 +10324,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3096 + "line": 3138 } }, { @@ -10363,7 +10338,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3097 + "line": 3139 } }, { @@ -10377,7 +10352,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3098 + "line": 3140 } }, { @@ -10391,7 +10366,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3099 + "line": 3141 } }, { @@ -10408,7 +10383,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3101 + "line": 3143 + } + }, + { + "name": "ImGuiMultiSelectFlags_NoSelectOnRightClick", + "value_expression": "1<<17", + "value": 131072, + "is_count": false, + "comments": { + "attached": "// Disable default right-click processing, which selects item on mouse down, and is designed for context-menus." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3144 } } ], @@ -10420,7 +10409,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3082 + "line": 3124 } }, { @@ -10436,7 +10425,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3123 + "line": 3166 } }, { @@ -10449,7 +10438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3124 + "line": 3167 } }, { @@ -10462,7 +10451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3125 + "line": 3168 } } ], @@ -10474,7 +10463,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3121 + "line": 3164 } }, { @@ -10490,7 +10479,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3299 + "line": 3342 } }, { @@ -10504,7 +10493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3300 + "line": 3343 } }, { @@ -10518,7 +10507,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3301 + "line": 3344 } }, { @@ -10532,7 +10521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3302 + "line": 3345 } }, { @@ -10546,7 +10535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3303 + "line": 3346 } }, { @@ -10560,7 +10549,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3304 + "line": 3347 } }, { @@ -10574,7 +10563,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3305 + "line": 3348 } }, { @@ -10585,7 +10574,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3306 + "line": 3349 } }, { @@ -10596,7 +10585,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3307 + "line": 3350 } }, { @@ -10607,7 +10596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3308 + "line": 3351 } }, { @@ -10618,7 +10607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3309 + "line": 3352 } }, { @@ -10629,7 +10618,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3310 + "line": 3353 } }, { @@ -10643,7 +10632,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3311 + "line": 3354 } }, { @@ -10654,7 +10643,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3312 + "line": 3355 } } ], @@ -10667,7 +10656,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3297 + "line": 3340 } }, { @@ -10683,7 +10672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3319 + "line": 3362 } }, { @@ -10697,7 +10686,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3320 + "line": 3363 } }, { @@ -10711,7 +10700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3321 + "line": 3364 } }, { @@ -10725,7 +10714,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3322 + "line": 3365 } }, { @@ -10739,7 +10728,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3323 + "line": 3366 } } ], @@ -10752,7 +10741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3317 + "line": 3360 } }, { @@ -10770,7 +10759,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3528 + "line": 3571 } }, { @@ -10783,7 +10772,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3529 + "line": 3572 } } ], @@ -10795,7 +10784,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3526 + "line": 3569 } }, { @@ -10810,7 +10799,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3535 + "line": 3578 } }, { @@ -10823,7 +10812,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3536 + "line": 3579 } }, { @@ -10836,7 +10825,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3537 + "line": 3580 } }, { @@ -10849,7 +10838,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3538 + "line": 3581 } }, { @@ -10862,7 +10851,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3539 + "line": 3582 } } ], @@ -10874,7 +10863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3533 + "line": 3576 } }, { @@ -10890,7 +10879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3690 + "line": 3735 } }, { @@ -10904,7 +10893,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3691 + "line": 3736 } }, { @@ -10918,7 +10907,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3692 + "line": 3737 } }, { @@ -10932,7 +10921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3693 + "line": 3738 } } ], @@ -10944,7 +10933,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3688 + "line": 3733 } }, { @@ -10960,7 +10949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3901 + "line": 3946 } }, { @@ -10974,7 +10963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3902 + "line": 3947 } }, { @@ -10988,7 +10977,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3903 + "line": 3948 } }, { @@ -11002,7 +10991,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3904 + "line": 3949 } } ], @@ -11015,7 +11004,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3899 + "line": 3944 } }, { @@ -11031,7 +11020,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3984 + "line": 4029 } }, { @@ -11045,7 +11034,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3985 + "line": 4030 } }, { @@ -11059,7 +11048,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3986 + "line": 4031 } }, { @@ -11073,7 +11062,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3987 + "line": 4032 } }, { @@ -11087,7 +11076,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3988 + "line": 4033 } }, { @@ -11101,7 +11090,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3989 + "line": 4034 } }, { @@ -11115,7 +11104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3990 + "line": 4035 } }, { @@ -11129,7 +11118,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3991 + "line": 4036 } }, { @@ -11143,7 +11132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3992 + "line": 4037 } }, { @@ -11157,7 +11146,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3993 + "line": 4038 } }, { @@ -11171,7 +11160,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3994 + "line": 4039 } }, { @@ -11185,7 +11174,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3995 + "line": 4040 } }, { @@ -11199,7 +11188,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3996 + "line": 4041 } }, { @@ -11216,7 +11205,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3999 + "line": 4044 } }, { @@ -11230,7 +11219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4000 + "line": 4045 } } ], @@ -11242,7 +11231,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3982 + "line": 4027 } } ], @@ -11440,9 +11429,9 @@ "// Enumerations", "// - We don't use strongly typed enums much because they add constraints (can't extend in private code, can't store typed in bit fields, extra casting on iteration)", "// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists!", - "// - In Visual Studio: CTRL+comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas CTRL+F12 (\"Edit.GoToImplementation\") cannot.", - "// - In Visual Studio w/ Visual Assist installed: ALT+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", - "// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments." + "// - In Visual Studio: Ctrl+Comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas Ctrl+F12 (\"Edit.GoToImplementation\") cannot.", + "// - In Visual Studio w/ Visual Assist installed: Alt+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", + "// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments." ], "attached": "// -> enum ImGuiDir // Enum: A cardinal direction (Left, Right, Up, Down)" }, @@ -11634,9 +11623,9 @@ "preceding": [ "// Flags (declared as int to allow using as flags without overhead, and to not pollute the top of this file)", "// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists!", - "// - In Visual Studio: CTRL+comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas CTRL+F12 (\"Edit.GoToImplementation\") cannot.", - "// - In Visual Studio w/ Visual Assist installed: ALT+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", - "// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments." + "// - In Visual Studio: Ctrl+Comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas Ctrl+F12 (\"Edit.GoToImplementation\") cannot.", + "// - In Visual Studio w/ Visual Assist installed: Alt+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", + "// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments." ], "attached": "// -> enum ImDrawFlags_ // Flags: for ImDrawList functions" }, @@ -11662,6 +11651,23 @@ "filename": "imgui.h" } }, + { + "name": "ImDrawTextFlags", + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// -> enum ImDrawTextFlags_ // Internal, do not use!" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h" + } + }, { "name": "ImFontFlags", "type": { @@ -11934,6 +11940,23 @@ "filename": "imgui.h" } }, + { + "name": "ImGuiListClipperFlags", + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// -> enum ImGuiListClipperFlags_// Flags: for ImGuiListClipper" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h" + } + }, { "name": "ImGuiPopupFlags", "type": { @@ -12730,7 +12753,7 @@ }, "comments": { "preceding": [ - "//-- OBSOLETED in 1.92.x: ImFontAtlasCustomRect becomes ImTextureRect", + "//-- OBSOLETED in 1.92.0: ImFontAtlasCustomRect becomes ImTextureRect", "// - ImFontAtlasCustomRect::X,Y --> ImTextureRect::x,y", "// - ImFontAtlasCustomRect::Width,Height --> ImTextureRect::w,h", "// - ImFontAtlasCustomRect::GlyphColored --> if you need to write to this, instead you can write to 'font->Glyphs.back()->Colored' after calling AddCustomRectFontGlyph()", @@ -12764,7 +12787,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 171 + "line": 177 } }, { @@ -12781,7 +12804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 176 + "line": 182 } }, { @@ -12798,7 +12821,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 182 + "line": 188 } }, { @@ -12818,7 +12841,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 188 + "line": 194 } }, { @@ -12843,7 +12866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 294 + "line": 302 } }, { @@ -12860,14 +12883,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 294 + "line": 302 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 292 + "line": 300 } }, { @@ -12892,7 +12915,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } }, { @@ -12909,7 +12932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } }, { @@ -12926,7 +12949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } }, { @@ -12943,7 +12966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } } ], @@ -12955,7 +12978,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 305 + "line": 313 } }, { @@ -12989,7 +13012,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 373 + "line": 381 } }, { @@ -13009,14 +13032,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 374 + "line": 382 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 362 + "line": 370 } }, { @@ -13050,7 +13073,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2187 + "line": 2216 } }, { @@ -13070,7 +13093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2188 + "line": 2217 } }, { @@ -13090,7 +13113,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2189 + "line": 2218 } } ], @@ -13105,7 +13128,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2185 + "line": 2214 } }, { @@ -13133,7 +13156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2197 + "line": 2226 } }, { @@ -13153,7 +13176,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2198 + "line": 2227 } }, { @@ -13173,7 +13196,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2199 + "line": 2228 } }, { @@ -13193,7 +13216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2200 + "line": 2229 } } ], @@ -13205,7 +13228,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2195 + "line": 2224 } }, { @@ -13230,7 +13253,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13247,7 +13270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13267,7 +13290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13277,7 +13300,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13302,7 +13325,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13319,7 +13342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13339,7 +13362,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13349,7 +13372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13374,7 +13397,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13391,7 +13414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13411,7 +13434,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13421,7 +13444,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13446,7 +13469,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13463,7 +13486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13483,7 +13506,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13493,7 +13516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13518,7 +13541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13535,7 +13558,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13555,7 +13578,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13565,7 +13588,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13590,7 +13613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13607,7 +13630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13627,7 +13650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13637,7 +13660,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13662,7 +13685,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13679,7 +13702,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13699,7 +13722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13709,7 +13732,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13734,7 +13757,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13751,7 +13774,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13771,7 +13794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13781,7 +13804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13806,7 +13829,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13823,7 +13846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13843,7 +13866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13853,7 +13876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13878,7 +13901,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13895,7 +13918,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13915,7 +13938,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13925,7 +13948,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13950,7 +13973,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13967,7 +13990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13987,7 +14010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13997,7 +14020,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14022,7 +14045,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14039,7 +14062,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14059,7 +14082,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14069,7 +14092,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14094,7 +14117,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14111,7 +14134,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14134,7 +14157,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14144,7 +14167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14169,7 +14192,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14186,7 +14209,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14206,7 +14229,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14216,7 +14239,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14241,7 +14264,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14258,7 +14281,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14278,7 +14301,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14288,7 +14311,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14313,7 +14336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14330,7 +14353,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14350,7 +14373,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14360,7 +14383,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14385,7 +14408,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14402,7 +14425,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14425,7 +14448,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14435,7 +14458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14460,7 +14483,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14477,7 +14500,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14497,7 +14520,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14507,7 +14530,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14532,7 +14555,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14549,7 +14572,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14572,7 +14595,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14582,7 +14605,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14607,7 +14630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14624,7 +14647,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14644,7 +14667,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14654,7 +14677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14679,7 +14702,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14696,7 +14719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14716,7 +14739,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14726,7 +14749,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14751,7 +14774,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14768,7 +14791,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14788,7 +14811,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14798,7 +14821,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14823,7 +14846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14840,7 +14863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14863,7 +14886,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14873,7 +14896,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14898,7 +14921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14915,7 +14938,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14935,7 +14958,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14945,7 +14968,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14970,7 +14993,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14987,7 +15010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -15010,7 +15033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -15020,7 +15043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -15045,7 +15068,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -15062,7 +15085,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -15085,7 +15108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -15095,7 +15118,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -15127,7 +15150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2323 + "line": 2352 } }, { @@ -15147,7 +15170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2324 + "line": 2353 } }, { @@ -15167,7 +15190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2325 + "line": 2354 } }, { @@ -15187,7 +15210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2327 + "line": 2356 } }, { @@ -15207,7 +15230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2328 + "line": 2357 } }, { @@ -15227,7 +15250,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2329 + "line": 2358 } }, { @@ -15247,7 +15270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2330 + "line": 2359 } }, { @@ -15267,7 +15290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2331 + "line": 2360 } }, { @@ -15287,7 +15310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2332 + "line": 2361 } }, { @@ -15307,7 +15330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2333 + "line": 2362 } }, { @@ -15327,7 +15350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2334 + "line": 2363 } }, { @@ -15347,7 +15370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2335 + "line": 2364 } }, { @@ -15367,7 +15390,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2336 + "line": 2365 } }, { @@ -15387,7 +15410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2337 + "line": 2366 } }, { @@ -15407,7 +15430,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2338 + "line": 2367 } }, { @@ -15427,7 +15450,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2339 + "line": 2368 } }, { @@ -15447,7 +15470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2340 + "line": 2369 } }, { @@ -15467,7 +15490,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2341 + "line": 2370 } }, { @@ -15487,7 +15510,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2342 + "line": 2371 } }, { @@ -15507,7 +15530,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2343 + "line": 2372 } }, { @@ -15527,7 +15550,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2344 + "line": 2373 } }, { @@ -15547,7 +15570,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2345 + "line": 2374 } }, { @@ -15567,7 +15590,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2346 + "line": 2375 } }, { @@ -15587,7 +15610,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2347 + "line": 2376 } }, { @@ -15607,7 +15630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2348 + "line": 2377 } }, { @@ -15627,7 +15650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2349 + "line": 2378 } }, { @@ -15647,7 +15670,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2350 + "line": 2379 + } + }, + { + "name": "ScrollbarPadding", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Padding of scrollbar grab within its frame (same for both axes)." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2380 } }, { @@ -15667,7 +15710,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2351 + "line": 2381 } }, { @@ -15687,7 +15730,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2352 + "line": 2382 } }, { @@ -15707,7 +15750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2353 + "line": 2383 } }, { @@ -15727,7 +15770,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2354 + "line": 2384 } }, { @@ -15747,7 +15790,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2355 + "line": 2385 } }, { @@ -15767,7 +15810,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2356 + "line": 2386 } }, { @@ -15787,7 +15830,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2357 + "line": 2387 } }, { @@ -15807,7 +15850,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2358 + "line": 2388 } }, { @@ -15827,7 +15870,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2359 + "line": 2389 } }, { @@ -15847,7 +15890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2360 + "line": 2390 } }, { @@ -15867,7 +15910,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2361 + "line": 2391 } }, { @@ -15887,7 +15930,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2362 + "line": 2392 } }, { @@ -15907,7 +15950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2363 + "line": 2393 } }, { @@ -15927,7 +15970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2364 + "line": 2394 } }, { @@ -15947,7 +15990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2365 + "line": 2395 } }, { @@ -15967,7 +16010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2366 + "line": 2396 } }, { @@ -15987,7 +16030,67 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2367 + "line": 2397 + } + }, + { + "name": "DragDropTargetRounding", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Radius of the drag and drop target frame." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2398 + } + }, + { + "name": "DragDropTargetBorderSize", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Thickness of the drag and drop target border." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2399 + } + }, + { + "name": "DragDropTargetPadding", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Size to expand the drag and drop target from actual target item size." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2400 } }, { @@ -16007,7 +16110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2368 + "line": 2401 } }, { @@ -16027,7 +16130,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2369 + "line": 2402 } }, { @@ -16047,7 +16150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2370 + "line": 2403 } }, { @@ -16067,7 +16170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2371 + "line": 2404 } }, { @@ -16087,7 +16190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2372 + "line": 2405 } }, { @@ -16107,7 +16210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2373 + "line": 2406 } }, { @@ -16127,7 +16230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2374 + "line": 2407 } }, { @@ -16147,7 +16250,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2375 + "line": 2408 + } + }, + { + "name": "DockingNodeHasCloseButton", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// Docking node has their own CloseButton() to close all docked windows." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2409 } }, { @@ -16167,7 +16290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2376 + "line": 2410 } }, { @@ -16187,7 +16310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2377 + "line": 2411 } }, { @@ -16207,7 +16330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2378 + "line": 2412 } }, { @@ -16227,7 +16350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2379 + "line": 2413 } }, { @@ -16247,7 +16370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2380 + "line": 2414 } }, { @@ -16267,7 +16390,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2381 + "line": 2415 } }, { @@ -16287,7 +16410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2382 + "line": 2416 } }, { @@ -16314,7 +16437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2385 + "line": 2419 } }, { @@ -16338,7 +16461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2389 + "line": 2423 } }, { @@ -16358,7 +16481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2390 + "line": 2424 } }, { @@ -16378,7 +16501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2391 + "line": 2425 } }, { @@ -16398,7 +16521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2392 + "line": 2426 } }, { @@ -16418,7 +16541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2393 + "line": 2427 } }, { @@ -16441,7 +16564,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2396 + "line": 2430 } }, { @@ -16461,14 +16584,14 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2397 + "line": 2431 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2319 + "line": 2348 } }, { @@ -16496,7 +16619,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2425 + "line": 2459 } }, { @@ -16516,7 +16639,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2426 + "line": 2460 } }, { @@ -16536,7 +16659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2427 + "line": 2461 } }, { @@ -16556,7 +16679,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2428 + "line": 2462 } } ], @@ -16569,7 +16692,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2423 + "line": 2457 } }, { @@ -16597,7 +16720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2437 + "line": 2471 } }, { @@ -16617,7 +16740,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2438 + "line": 2472 } }, { @@ -16637,7 +16760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2439 + "line": 2473 } }, { @@ -16657,7 +16780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2440 + "line": 2474 } }, { @@ -16677,7 +16800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2441 + "line": 2475 } }, { @@ -16697,7 +16820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2442 + "line": 2476 } }, { @@ -16723,7 +16846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2443 + "line": 2477 } }, { @@ -16749,7 +16872,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2444 + "line": 2478 } }, { @@ -16772,7 +16895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2445 + "line": 2479 } }, { @@ -16798,7 +16921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2448 + "line": 2482 } }, { @@ -16821,7 +16944,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2449 + "line": 2483 } }, { @@ -16836,12 +16959,12 @@ } }, "comments": { - "attached": "// = false // [OBSOLETE] Allow user scaling text of individual window with CTRL+Wheel." + "attached": "// = false // Allow user scaling text of individual window with Ctrl+Wheel." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2450 + "line": 2484 } }, { @@ -16864,7 +16987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2453 + "line": 2487 } }, { @@ -16884,7 +17007,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2454 + "line": 2488 } }, { @@ -16904,7 +17027,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2455 + "line": 2489 } }, { @@ -16924,7 +17047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2456 + "line": 2490 } }, { @@ -16944,7 +17067,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2457 + "line": 2491 } }, { @@ -16964,7 +17087,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2458 + "line": 2492 } }, { @@ -16984,7 +17107,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2459 + "line": 2493 } }, { @@ -17007,7 +17130,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2462 + "line": 2496 + } + }, + { + "name": "ConfigDockingNoDockingOver", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// = false // Simplified docking mode: disable window merging into a same tab-bar, so docking is limited to splitting windows." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2497 } }, { @@ -17027,7 +17170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2463 + "line": 2498 } }, { @@ -17047,7 +17190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2464 + "line": 2499 } }, { @@ -17067,7 +17210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2465 + "line": 2500 } }, { @@ -17090,7 +17233,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2468 + "line": 2503 } }, { @@ -17110,7 +17253,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2469 + "line": 2504 } }, { @@ -17130,7 +17273,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2470 + "line": 2505 } }, { @@ -17145,16 +17288,16 @@ } }, "comments": { - "attached": "// = false // Disable default OS parenting to main viewport for secondary viewports. By default, viewports are marked with ParentViewportId = , expecting the platform backend to setup a parent/child relationship between the OS windows (some backend may ignore this). Set to true if you want the default to be 0, then all viewports will be top-level OS windows." + "attached": "// = true // When false: set secondary viewports' ParentViewportId to main viewport ID by default. Expects the platform backend to setup a parent/child relationship between the OS windows based on this value. Some backend may ignore this. Set to true if you want viewports to automatically be parent of main viewport, otherwise all viewports will be top-level OS windows." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2471 + "line": 2506 } }, { - "name": "ConfigViewportPlatformFocusSetsImGuiFocus", + "name": "ConfigViewportsPlatformFocusSetsImGuiFocus", "is_array": false, "is_anonymous": false, "type": { @@ -17170,7 +17313,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2472 + "line": 2507 } }, { @@ -17194,7 +17337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2476 + "line": 2511 } }, { @@ -17214,7 +17357,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2477 + "line": 2512 } }, { @@ -17238,7 +17381,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2481 + "line": 2516 } }, { @@ -17258,7 +17401,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2482 + "line": 2517 } }, { @@ -17278,7 +17421,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2483 + "line": 2518 } }, { @@ -17298,7 +17441,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2484 + "line": 2519 } }, { @@ -17318,7 +17461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2485 + "line": 2520 } }, { @@ -17338,7 +17481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2486 + "line": 2521 } }, { @@ -17358,7 +17501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2487 + "line": 2522 } }, { @@ -17378,7 +17521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2488 + "line": 2523 } }, { @@ -17393,12 +17536,12 @@ } }, "comments": { - "attached": "// = false // [EXPERIMENTAL] CTRL+C copy the contents of focused window into the clipboard. Experimental because: (1) has known issues with nested Begin/End pairs (2) text output quality varies (3) text output is in submission order rather than spatial order." + "attached": "// = false // [EXPERIMENTAL] Ctrl+C copy the contents of focused window into the clipboard. Experimental because: (1) has known issues with nested Begin/End pairs (2) text output quality varies (3) text output is in submission order rather than spatial order." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2489 + "line": 2524 } }, { @@ -17418,7 +17561,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2490 + "line": 2525 } }, { @@ -17438,7 +17581,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2491 + "line": 2526 } }, { @@ -17462,7 +17605,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2495 + "line": 2530 } }, { @@ -17482,7 +17625,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2496 + "line": 2531 } }, { @@ -17502,7 +17645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2497 + "line": 2532 } }, { @@ -17522,7 +17665,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2498 + "line": 2533 } }, { @@ -17542,7 +17685,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2499 + "line": 2534 } }, { @@ -17578,7 +17721,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2519 + "line": 2554 } }, { @@ -17598,7 +17741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2520 + "line": 2555 } }, { @@ -17618,7 +17761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2521 + "line": 2556 } }, { @@ -17638,7 +17781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2522 + "line": 2557 } }, { @@ -17657,14 +17800,14 @@ "// Option to enable various debug tools showing buttons that will call the IM_DEBUG_BREAK() macro.", "// - The Item Picker tool will be available regardless of this being enabled, in order to maximize its discoverability.", "// - Requires a debugger being attached, otherwise IM_DEBUG_BREAK() options will appear to crash your application.", - "// e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version)." + "// e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version." ], "attached": "// = false // Enable various tools calling IM_DEBUG_BREAK()." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2528 + "line": 2563 } }, { @@ -17690,7 +17833,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2534 + "line": 2569 } }, { @@ -17710,7 +17853,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2535 + "line": 2570 } }, { @@ -17736,7 +17879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2541 + "line": 2576 } }, { @@ -17756,7 +17899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2542 + "line": 2577 } }, { @@ -17781,7 +17924,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2547 + "line": 2582 } }, { @@ -17804,7 +17947,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2550 + "line": 2585 } }, { @@ -17834,7 +17977,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2559 + "line": 2594 } }, { @@ -17860,7 +18003,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2560 + "line": 2595 } }, { @@ -17883,7 +18026,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2561 + "line": 2596 } }, { @@ -17906,7 +18049,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2562 + "line": 2597 } }, { @@ -17929,7 +18072,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2563 + "line": 2598 } }, { @@ -17949,7 +18092,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2597 + "line": 2629 } }, { @@ -17969,7 +18112,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2598 + "line": 2630 } }, { @@ -17989,7 +18132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2599 + "line": 2631 } }, { @@ -18009,7 +18152,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2600 + "line": 2632 } }, { @@ -18029,7 +18172,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2601 + "line": 2633 } }, { @@ -18049,7 +18192,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2602 + "line": 2634 } }, { @@ -18069,7 +18212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2603 + "line": 2635 } }, { @@ -18089,7 +18232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2604 + "line": 2636 } }, { @@ -18109,7 +18252,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2605 + "line": 2637 } }, { @@ -18129,7 +18272,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2606 + "line": 2638 } }, { @@ -18149,7 +18292,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2607 + "line": 2639 } }, { @@ -18169,7 +18312,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2608 + "line": 2640 } }, { @@ -18189,7 +18332,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2609 + "line": 2641 } }, { @@ -18212,7 +18355,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2615 + "line": 2647 } }, { @@ -18237,7 +18380,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2620 + "line": 2652 } }, { @@ -18262,7 +18405,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2621 + "line": 2653 } }, { @@ -18277,12 +18420,12 @@ } }, "comments": { - "attached": "// Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold SHIFT to turn vertical scroll into horizontal scroll." + "attached": "// Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold Shift to turn vertical scroll into horizontal scroll." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2622 + "line": 2654 } }, { @@ -18302,7 +18445,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2623 + "line": 2655 } }, { @@ -18322,7 +18465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2624 + "line": 2656 } }, { @@ -18342,7 +18485,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2625 + "line": 2657 } }, { @@ -18362,7 +18505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2626 + "line": 2658 } }, { @@ -18382,7 +18525,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2627 + "line": 2659 } }, { @@ -18402,7 +18545,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2628 + "line": 2660 } }, { @@ -18422,7 +18565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2629 + "line": 2661 } }, { @@ -18440,12 +18583,12 @@ "preceding": [ "// Other state maintained from data above + IO function calls" ], - "attached": "// Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags. Read-only, updated by NewFrame()" + "attached": "// Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags). Read-only, updated by NewFrame()" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2632 + "line": 2664 } }, { @@ -18470,7 +18613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2633 + "line": 2665 } }, { @@ -18490,7 +18633,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2634 + "line": 2666 } }, { @@ -18510,7 +18653,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2635 + "line": 2667 } }, { @@ -18535,7 +18678,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2636 + "line": 2668 } }, { @@ -18560,7 +18703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2637 + "line": 2669 } }, { @@ -18585,7 +18728,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2638 + "line": 2670 } }, { @@ -18610,7 +18753,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2639 + "line": 2671 } }, { @@ -18635,7 +18778,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2640 + "line": 2672 } }, { @@ -18660,7 +18803,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2641 + "line": 2673 } }, { @@ -18685,7 +18828,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2642 + "line": 2674 } }, { @@ -18710,7 +18853,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2643 + "line": 2675 } }, { @@ -18735,7 +18878,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2644 + "line": 2676 } }, { @@ -18760,7 +18903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2645 + "line": 2677 } }, { @@ -18775,12 +18918,12 @@ } }, "comments": { - "attached": "// On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system." + "attached": "// On a non-Mac system, holding Shift requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2646 + "line": 2678 } }, { @@ -18795,12 +18938,12 @@ } }, "comments": { - "attached": "// (OSX) Set to true when the current click was a Ctrl+click that spawned a simulated right click" + "attached": "// (OSX) Set to true when the current click was a Ctrl+Click that spawned a simulated right click" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2647 + "line": 2679 } }, { @@ -18825,7 +18968,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2648 + "line": 2680 } }, { @@ -18850,7 +18993,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2649 + "line": 2681 } }, { @@ -18875,7 +19018,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2650 + "line": 2682 } }, { @@ -18900,7 +19043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2651 + "line": 2683 } }, { @@ -18920,7 +19063,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2652 + "line": 2684 } }, { @@ -18940,7 +19083,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2653 + "line": 2685 } }, { @@ -18960,7 +19103,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2654 + "line": 2686 } }, { @@ -18980,7 +19123,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2655 + "line": 2687 } }, { @@ -19000,7 +19143,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2656 + "line": 2688 } }, { @@ -19026,7 +19169,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2669 + "line": 2701 } }, { @@ -19249,14 +19392,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2675 + "line": 2707 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2431 + "line": 2465 } }, { @@ -19287,7 +19430,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2696 + "line": 2730 } }, { @@ -19307,7 +19450,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2697 + "line": 2731 } }, { @@ -19327,7 +19470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2698 + "line": 2732 } }, { @@ -19350,7 +19493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2699 + "line": 2733 } }, { @@ -19377,7 +19520,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2706 + "line": 2740 } }, { @@ -19397,7 +19540,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2707 + "line": 2741 } }, { @@ -19420,7 +19563,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2708 + "line": 2742 } }, { @@ -19440,7 +19583,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2709 + "line": 2743 } }, { @@ -19455,12 +19598,12 @@ } }, "comments": { - "attached": "// Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1" + "attached": "// Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land: == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2710 + "line": 2744 } }, { @@ -19480,7 +19623,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2711 + "line": 2745 } }, { @@ -19500,7 +19643,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2712 + "line": 2746 } }, { @@ -19515,12 +19658,12 @@ } }, "comments": { - "attached": "// // Read-write // [Completion,History,Always] == to SelectionEnd when no selection)" + "attached": "// // Read-write // [Completion,History,Always] == to SelectionEnd when no selection" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2713 + "line": 2747 } }, { @@ -19540,7 +19683,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2714 + "line": 2748 } } ], @@ -19560,7 +19703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2694 + "line": 2728 } }, { @@ -19591,7 +19734,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2730 + "line": 2764 } }, { @@ -19611,7 +19754,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2731 + "line": 2765 } }, { @@ -19631,7 +19774,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2732 + "line": 2766 } }, { @@ -19651,7 +19794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2733 + "line": 2767 } } ], @@ -19664,7 +19807,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2728 + "line": 2762 } }, { @@ -19692,7 +19835,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2745 + "line": 2779 } }, { @@ -19712,7 +19855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2746 + "line": 2780 } }, { @@ -19732,7 +19875,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2747 + "line": 2781 } }, { @@ -19752,7 +19895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2748 + "line": 2782 } }, { @@ -19772,7 +19915,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2749 + "line": 2783 } }, { @@ -19792,7 +19935,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2750 + "line": 2784 } }, { @@ -19812,7 +19955,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2751 + "line": 2785 } }, { @@ -19832,7 +19975,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2752 + "line": 2786 } }, { @@ -19852,7 +19995,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2753 + "line": 2787 } } ], @@ -19870,7 +20013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2743 + "line": 2777 } }, { @@ -19904,7 +20047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2762 + "line": 2796 } }, { @@ -19924,7 +20067,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2763 + "line": 2797 } }, { @@ -19947,7 +20090,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2766 + "line": 2800 } }, { @@ -19967,7 +20110,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2767 + "line": 2801 } }, { @@ -19987,7 +20130,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2768 + "line": 2802 } }, { @@ -20012,7 +20155,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2769 + "line": 2803 } }, { @@ -20032,7 +20175,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2770 + "line": 2804 } }, { @@ -20052,7 +20195,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2771 + "line": 2805 } } ], @@ -20064,7 +20207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2759 + "line": 2793 } }, { @@ -20095,7 +20238,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2814 + "line": 2848 } }, { @@ -20118,7 +20261,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2815 + "line": 2849 } } ], @@ -20130,7 +20273,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2812 + "line": 2846 } }, { @@ -20160,7 +20303,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2822 + "line": 2856 } }, { @@ -20177,7 +20320,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2823 + "line": 2857 } }, { @@ -20194,7 +20337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2824 + "line": 2858 } } ], @@ -20206,7 +20349,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2802 + "line": 2836 } }, { @@ -20231,7 +20374,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2831 + "line": 2865 } } ], @@ -20244,7 +20387,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2829 + "line": 2863 } }, { @@ -20269,7 +20412,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2852 + "line": 2886 } }, { @@ -20297,7 +20440,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2850 + "line": 2884 } }, { @@ -20322,7 +20465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } }, { @@ -20339,7 +20482,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } }, { @@ -20359,14 +20502,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } }, { @@ -20396,7 +20539,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2870 + "line": 2904 } } ], @@ -20415,7 +20558,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2867 + "line": 2901 } }, { @@ -20446,7 +20589,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2926 + "line": 2967 } }, { @@ -20466,7 +20609,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2927 + "line": 2968 } }, { @@ -20486,7 +20629,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2928 + "line": 2969 } }, { @@ -20506,7 +20649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2929 + "line": 2970 } }, { @@ -20526,7 +20669,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2930 + "line": 2971 } }, { @@ -20546,7 +20689,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2931 + "line": 2972 } }, { @@ -20566,7 +20709,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2932 + "line": 2973 } }, { @@ -20589,7 +20732,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2933 + "line": 2974 + } + }, + { + "name": "Flags", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiListClipperFlags", + "description": { + "kind": "User", + "name": "ImGuiListClipperFlags" + } + }, + "comments": { + "attached": "// [Internal] Flags, currently not yet well exposed." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2975 } } ], @@ -20620,7 +20783,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2924 + "line": 2965 } }, { @@ -20645,7 +20808,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3026 + "line": 3068 } } ], @@ -20660,7 +20823,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3024 + "line": 3066 } }, { @@ -20691,7 +20854,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3112 + "line": 3155 } }, { @@ -20711,7 +20874,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3113 + "line": 3156 } }, { @@ -20731,7 +20894,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3114 + "line": 3157 } }, { @@ -20751,7 +20914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3115 + "line": 3158 } }, { @@ -20771,7 +20934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3116 + "line": 3159 } }, { @@ -20791,7 +20954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3117 + "line": 3160 } } ], @@ -20807,7 +20970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3109 + "line": 3152 } }, { @@ -20838,7 +21001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3132 + "line": 3175 } }, { @@ -20858,7 +21021,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3133 + "line": 3176 } }, { @@ -20878,7 +21041,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3134 + "line": 3177 } }, { @@ -20898,7 +21061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3135 + "line": 3178 } }, { @@ -20918,7 +21081,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3136 + "line": 3179 } } ], @@ -20930,7 +21093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3129 + "line": 3172 } }, { @@ -20961,7 +21124,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3158 + "line": 3201 } }, { @@ -20981,7 +21144,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3159 + "line": 3202 } }, { @@ -21004,7 +21167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3160 + "line": 3203 } }, { @@ -21115,7 +21278,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3162 + "line": 3205 } }, { @@ -21135,7 +21298,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3163 + "line": 3206 } } ], @@ -21162,7 +21325,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3155 + "line": 3198 } }, { @@ -21196,7 +21359,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3181 + "line": 3224 } }, { @@ -21321,7 +21484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3178 + "line": 3221 } }, { @@ -21349,7 +21512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3230 + "line": 3273 } }, { @@ -21369,7 +21532,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3231 + "line": 3274 } }, { @@ -21389,7 +21552,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3232 + "line": 3275 } }, { @@ -21409,7 +21572,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3233 + "line": 3276 } }, { @@ -21429,7 +21592,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3234 + "line": 3277 } }, { @@ -21449,7 +21612,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3235 + "line": 3278 } }, { @@ -21472,7 +21635,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3236 + "line": 3279 } }, { @@ -21492,7 +21655,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3237 + "line": 3280 } }, { @@ -21512,7 +21675,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3238 + "line": 3281 } } ], @@ -21528,7 +21691,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3228 + "line": 3271 } }, { @@ -21559,7 +21722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3251 + "line": 3294 } }, { @@ -21582,7 +21745,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3252 + "line": 3295 } }, { @@ -21605,7 +21768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3253 + "line": 3296 } } ], @@ -21618,7 +21781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3249 + "line": 3292 } }, { @@ -21643,7 +21806,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3266 + "line": 3309 } }, { @@ -21660,7 +21823,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3267 + "line": 3310 } }, { @@ -21677,7 +21840,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3268 + "line": 3311 } } ], @@ -21689,7 +21852,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3264 + "line": 3307 } }, { @@ -21714,7 +21877,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3274 + "line": 3317 } }, { @@ -21731,7 +21894,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3275 + "line": 3318 } } ], @@ -21743,7 +21906,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3272 + "line": 3315 } }, { @@ -21771,7 +21934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3282 + "line": 3325 } }, { @@ -21791,7 +21954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3283 + "line": 3326 } }, { @@ -21811,7 +21974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3284 + "line": 3327 } } ], @@ -21824,7 +21987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3280 + "line": 3323 } }, { @@ -21855,7 +22018,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3338 + "line": 3381 } }, { @@ -21875,7 +22038,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3339 + "line": 3382 } }, { @@ -21895,7 +22058,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3340 + "line": 3383 } }, { @@ -21915,7 +22078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3341 + "line": 3384 } }, { @@ -21938,7 +22101,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3344 + "line": 3387 } }, { @@ -21961,7 +22124,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3345 + "line": 3388 } }, { @@ -21984,7 +22147,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3346 + "line": 3389 } }, { @@ -22007,7 +22170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3347 + "line": 3390 } }, { @@ -22027,7 +22190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3348 + "line": 3391 } }, { @@ -22047,7 +22210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3349 + "line": 3392 } }, { @@ -22067,7 +22230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3350 + "line": 3393 } }, { @@ -22087,7 +22250,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3351 + "line": 3394 } }, { @@ -22107,7 +22270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3352 + "line": 3395 } }, { @@ -22127,7 +22290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3353 + "line": 3396 } }, { @@ -22147,7 +22310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3354 + "line": 3397 } }, { @@ -22173,7 +22336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3355 + "line": 3398 } } ], @@ -22193,7 +22356,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3335 + "line": 3378 } }, { @@ -22221,7 +22384,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3495 + "line": 3538 } }, { @@ -22241,7 +22404,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3496 + "line": 3539 } }, { @@ -22261,7 +22424,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3497 + "line": 3540 } }, { @@ -22281,7 +22444,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3498 + "line": 3541 } }, { @@ -22301,7 +22464,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3499 + "line": 3542 } }, { @@ -22321,7 +22484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3500 + "line": 3543 } }, { @@ -22341,7 +22504,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3501 + "line": 3544 } }, { @@ -22361,7 +22524,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3502 + "line": 3545 } }, { @@ -22384,7 +22547,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3503 + "line": 3546 } }, { @@ -22402,12 +22565,12 @@ } }, "comments": { - "attached": "// List of textures to update. Most of the times the list is shared by all ImDrawData, has only 1 texture and it doesn't need any update. This almost always points to ImGui::GetPlatformIO().Textures[]. May be overriden or set to NULL if you want to manually update textures." + "attached": "// List of textures to update. Most of the times the list is shared by all ImDrawData, has only 1 texture and it doesn't need any update. This almost always points to ImGui::GetPlatformIO().Textures[]. May be overridden or set to NULL if you want to manually update textures." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3504 + "line": 3547 } } ], @@ -22421,7 +22584,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3493 + "line": 3536 } }, { @@ -22449,7 +22612,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3547 + "line": 3590 } }, { @@ -22469,7 +22632,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3547 + "line": 3590 } }, { @@ -22489,7 +22652,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3548 + "line": 3591 } }, { @@ -22509,7 +22672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3548 + "line": 3591 } } ], @@ -22523,7 +22686,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3545 + "line": 3588 } }, { @@ -22554,7 +22717,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3561 + "line": 3604 } }, { @@ -22574,7 +22737,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3562 + "line": 3605 } }, { @@ -22597,7 +22760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3563 + "line": 3606 } }, { @@ -22617,7 +22780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3564 + "line": 3607 } }, { @@ -22637,7 +22800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3565 + "line": 3608 } }, { @@ -22657,7 +22820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3566 + "line": 3609 } }, { @@ -22677,7 +22840,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3567 + "line": 3610 } }, { @@ -22697,7 +22860,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3568 + "line": 3611 } }, { @@ -22720,7 +22883,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3569 + "line": 3612 } }, { @@ -22740,7 +22903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3570 + "line": 3613 } }, { @@ -22760,7 +22923,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3571 + "line": 3614 } }, { @@ -22780,7 +22943,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3572 + "line": 3615 } }, { @@ -22800,7 +22963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3573 + "line": 3616 } }, { @@ -22820,7 +22983,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3574 + "line": 3617 } }, { @@ -22840,7 +23003,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3575 + "line": 3618 } }, { @@ -22860,7 +23023,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3576 + "line": 3619 } } ], @@ -22878,7 +23041,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3558 + "line": 3601 } }, { @@ -22914,7 +23077,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3603 + "line": 3648 } }, { @@ -22937,7 +23100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3604 + "line": 3649 } }, { @@ -22957,7 +23120,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3605 + "line": 3650 } }, { @@ -22972,12 +23135,12 @@ } }, "comments": { - "attached": "// true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself)." + "attached": "// true // TTF/OTF data ownership taken by the owner ImFontAtlas (will delete memory itself)." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3606 + "line": 3651 } }, { @@ -23000,7 +23163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3609 + "line": 3654 } }, { @@ -23020,7 +23183,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3610 + "line": 3655 } }, { @@ -23040,7 +23203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3611 + "line": 3656 } }, { @@ -23060,7 +23223,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3612 + "line": 3657 } }, { @@ -23080,7 +23243,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3613 + "line": 3658 } }, { @@ -23100,7 +23263,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3614 + "line": 3659 } }, { @@ -23120,7 +23283,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3615 + "line": 3660 } }, { @@ -23146,7 +23309,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3616 + "line": 3661 } }, { @@ -23172,7 +23335,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3617 + "line": 3662 } }, { @@ -23195,7 +23358,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3619 + "line": 3664 } }, { @@ -23215,7 +23378,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3620 + "line": 3665 } }, { @@ -23235,7 +23398,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3621 + "line": 3666 } }, { @@ -23255,7 +23418,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3622 + "line": 3667 } }, { @@ -23275,7 +23438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3623 + "line": 3668 } }, { @@ -23295,7 +23458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3624 + "line": 3669 } }, { @@ -23318,7 +23481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3626 + "line": 3671 } }, { @@ -23338,7 +23501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3627 + "line": 3672 } }, { @@ -23361,7 +23524,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3630 + "line": 3675 } }, { @@ -23384,7 +23547,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3631 + "line": 3676 } }, { @@ -23410,7 +23573,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3632 + "line": 3677 } }, { @@ -23433,7 +23596,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3633 + "line": 3678 } } ], @@ -23445,7 +23608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3600 + "line": 3645 } }, { @@ -23474,7 +23637,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3642 + "line": 3687 } }, { @@ -23495,7 +23658,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3643 + "line": 3688 } }, { @@ -23516,7 +23679,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3644 + "line": 3689 } }, { @@ -23537,7 +23700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3645 + "line": 3690 } }, { @@ -23557,7 +23720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3646 + "line": 3691 } }, { @@ -23577,7 +23740,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23597,7 +23760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23617,7 +23780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23637,7 +23800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23657,7 +23820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23677,7 +23840,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23697,7 +23860,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23717,7 +23880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23737,7 +23900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3649 + "line": 3694 } } ], @@ -23750,7 +23913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3640 + "line": 3685 } }, { @@ -23778,7 +23941,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3658 + "line": 3703 } } ], @@ -23791,7 +23954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3656 + "line": 3701 } }, { @@ -23819,7 +23982,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3680 + "line": 3725 } }, { @@ -23839,7 +24002,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3680 + "line": 3725 } }, { @@ -23859,7 +24022,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3681 + "line": 3726 } }, { @@ -23879,7 +24042,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3681 + "line": 3726 } }, { @@ -23899,7 +24062,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3682 + "line": 3727 } }, { @@ -23919,7 +24082,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3682 + "line": 3727 } } ], @@ -23933,7 +24096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3678 + "line": 3723 } }, { @@ -23964,7 +24127,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3804 + "line": 3849 } }, { @@ -23984,7 +24147,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3805 + "line": 3850 } }, { @@ -24004,7 +24167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3806 + "line": 3851 } }, { @@ -24024,7 +24187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3807 + "line": 3852 } }, { @@ -24044,7 +24207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3808 + "line": 3853 } }, { @@ -24064,7 +24227,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3809 + "line": 3854 } }, { @@ -24084,7 +24247,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3810 + "line": 3855 } }, { @@ -24107,7 +24270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3811 + "line": 3856 } }, { @@ -24133,7 +24296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3817 + "line": 3862 } }, { @@ -24148,7 +24311,7 @@ } }, "comments": { - "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.x" + "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.0." }, "conditionals": [ { @@ -24181,7 +24344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3821 + "line": 3866 } }, { @@ -24204,7 +24367,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3824 + "line": 3869 } }, { @@ -24224,7 +24387,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3825 + "line": 3870 } }, { @@ -24244,7 +24407,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3826 + "line": 3871 } }, { @@ -24264,7 +24427,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3827 + "line": 3872 } }, { @@ -24284,7 +24447,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3828 + "line": 3873 } }, { @@ -24304,7 +24467,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3829 + "line": 3874 } }, { @@ -24324,7 +24487,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3830 + "line": 3875 } }, { @@ -24344,7 +24507,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3831 + "line": 3876 } }, { @@ -24364,7 +24527,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3832 + "line": 3877 } }, { @@ -24389,7 +24552,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3833 + "line": 3878 } }, { @@ -24409,7 +24572,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3834 + "line": 3879 } }, { @@ -24429,7 +24592,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3835 + "line": 3880 } }, { @@ -24449,7 +24612,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3836 + "line": 3881 } }, { @@ -24472,7 +24635,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3837 + "line": 3882 } }, { @@ -24498,7 +24661,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3838 + "line": 3883 } }, { @@ -24524,7 +24687,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3839 + "line": 3884 } }, { @@ -24547,7 +24710,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3840 + "line": 3885 } }, { @@ -24567,7 +24730,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3841 + "line": 3886 } }, { @@ -24587,7 +24750,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3842 + "line": 3887 } }, { @@ -24610,7 +24773,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3843 + "line": 3888 } }, { @@ -24639,7 +24802,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3848 + "line": 3893 } } ], @@ -24669,7 +24832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3715 + "line": 3760 } }, { @@ -24700,7 +24863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3819 + "line": 3864 } }, { @@ -24723,12 +24886,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3819 + "line": 3864 } } ], "comments": { - "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.x" + "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.0." }, "conditionals": [ { @@ -24739,7 +24902,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3819 + "line": 3864 } }, { @@ -24770,7 +24933,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3867 + "line": 3912 } }, { @@ -24790,7 +24953,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3868 + "line": 3913 } }, { @@ -24810,7 +24973,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3869 + "line": 3914 } }, { @@ -24830,7 +24993,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3870 + "line": 3915 } }, { @@ -24853,7 +25016,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3873 + "line": 3918 } }, { @@ -24873,7 +25036,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3874 + "line": 3919 } }, { @@ -24893,7 +25056,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3875 + "line": 3920 } }, { @@ -24916,7 +25079,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3878 + "line": 3923 } }, { @@ -24939,7 +25102,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3878 + "line": 3923 } }, { @@ -24960,7 +25123,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3879 + "line": 3924 } }, { @@ -24981,7 +25144,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3880 + "line": 3925 } }, { @@ -25002,7 +25165,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3881 + "line": 3926 } }, { @@ -25023,7 +25186,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3882 + "line": 3927 } }, { @@ -25043,7 +25206,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3883 + "line": 3928 } }, { @@ -25063,11 +25226,11 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3884 + "line": 3929 } }, { - "name": "ContainerFont", + "name": "OwnerFont", "is_array": false, "is_anonymous": false, "type": { @@ -25086,7 +25249,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3885 + "line": 3930 } }, { @@ -25109,7 +25272,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3886 + "line": 3931 } } ], @@ -25122,7 +25285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3864 + "line": 3909 } }, { @@ -25156,11 +25319,11 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3915 + "line": 3960 } }, { - "name": "ContainerAtlas", + "name": "OwnerAtlas", "is_array": false, "is_anonymous": false, "type": { @@ -25179,7 +25342,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3916 + "line": 3961 } }, { @@ -25199,7 +25362,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3917 + "line": 3962 } }, { @@ -25219,7 +25382,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3918 + "line": 3963 } }, { @@ -25243,7 +25406,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3922 + "line": 3967 } }, { @@ -25263,7 +25426,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3923 + "line": 3968 } }, { @@ -25278,12 +25441,12 @@ } }, "comments": { - "attached": "// 16 // in // List of sources. Pointers within ContainerAtlas->Sources[]" + "attached": "// 16 // in // List of sources. Pointers within OwnerAtlas->Sources[]" }, "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3924 + "line": 3969 } }, { @@ -25303,7 +25466,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3925 + "line": 3970 } }, { @@ -25323,7 +25486,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3926 + "line": 3971 } }, { @@ -25348,7 +25511,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3927 + "line": 3972 } }, { @@ -25368,7 +25531,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3928 + "line": 3973 } }, { @@ -25388,7 +25551,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3929 + "line": 3974 } }, { @@ -25414,7 +25577,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3931 + "line": 3976 } } ], @@ -25422,7 +25585,7 @@ "preceding": [ "// Font runtime data and rendering", "// - ImFontAtlas automatically loads a default embedded font for you if you didn't load one manually.", - "// - Since 1.92.X a font may be rendered as any size! Therefore a font doesn't have one specific size.", + "// - Since 1.92.0 a font may be rendered as any size! Therefore a font doesn't have one specific size.", "// - Use 'font->GetFontBaked(size)' to retrieve the ImFontBaked* corresponding to a given size.", "// - If you used g.Font + g.FontSize (which is frequent from the ImGui layer), you can use g.FontBaked as a shortcut, as g.FontBaked == g.Font->GetFontBaked(g.FontSize)." ] @@ -25430,7 +25593,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3912 + "line": 3957 } }, { @@ -25458,7 +25621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4012 + "line": 4057 } }, { @@ -25478,7 +25641,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4013 + "line": 4058 } }, { @@ -25498,7 +25661,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4014 + "line": 4059 } }, { @@ -25518,7 +25681,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4015 + "line": 4060 } }, { @@ -25538,7 +25701,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4016 + "line": 4061 } }, { @@ -25558,7 +25721,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4017 + "line": 4062 } }, { @@ -25578,7 +25741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4018 + "line": 4063 } }, { @@ -25598,7 +25761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4019 + "line": 4064 } }, { @@ -25618,7 +25781,30 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4020 + "line": 4065 + } + }, + { + "name": "ParentViewport", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiViewport*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiViewport" + } + } + }, + "comments": { + "attached": "// (Advanced) Direct shortcut to ImGui::FindViewportByID(ParentViewportId). NULL: no parent." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 4066 } }, { @@ -25641,7 +25827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4021 + "line": 4067 } }, { @@ -25671,7 +25857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4028 + "line": 4074 } }, { @@ -25694,7 +25880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4029 + "line": 4075 } }, { @@ -25717,7 +25903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4030 + "line": 4076 } }, { @@ -25740,7 +25926,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4031 + "line": 4077 } }, { @@ -25760,7 +25946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4032 + "line": 4078 } }, { @@ -25780,7 +25966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4033 + "line": 4079 } }, { @@ -25800,7 +25986,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4034 + "line": 4080 } }, { @@ -25820,7 +26006,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4035 + "line": 4081 } } ], @@ -25838,7 +26024,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4010 + "line": 4055 } }, { @@ -26051,7 +26237,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4108 + "line": 4154 } }, { @@ -26152,7 +26338,7 @@ "comments": { "preceding": [ "// Optional: Open link/folder/file in OS Shell", - "// (default to use ShellExecuteW() on Windows, system() on Linux/Mac)" + "// (default to use ShellExecuteW() on Windows, system() on Linux/Mac. expected to return false on failure, but some platforms may always return true)" ] }, "is_internal": false, @@ -26177,7 +26363,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4113 + "line": 4159 } }, { @@ -26324,7 +26510,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4118 + "line": 4164 } }, { @@ -26348,7 +26534,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4123 + "line": 4169 } }, { @@ -26370,7 +26556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4130 + "line": 4176 } }, { @@ -26387,7 +26573,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4131 + "line": 4177 } }, { @@ -26412,7 +26598,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4134 + "line": 4180 } }, { @@ -28498,7 +28684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4184 + "line": 4230 } }, { @@ -28522,7 +28708,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4192 + "line": 4238 } }, { @@ -28546,7 +28732,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4196 + "line": 4242 } } ], @@ -28558,7 +28744,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4096 + "line": 4142 } }, { @@ -28586,7 +28772,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4203 + "line": 4256 } }, { @@ -28606,7 +28792,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4203 + "line": 4256 } }, { @@ -28626,7 +28812,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4204 + "line": 4257 } }, { @@ -28646,7 +28832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4204 + "line": 4257 } }, { @@ -28666,7 +28852,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4205 + "line": 4258 } }, { @@ -28689,7 +28875,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4206 + "line": 4259 } } ], @@ -28702,7 +28888,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4201 + "line": 4254 } }, { @@ -28730,7 +28916,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4213 + "line": 4266 } }, { @@ -28750,7 +28936,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4214 + "line": 4267 } }, { @@ -28770,7 +28956,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4215 + "line": 4268 } }, { @@ -28790,7 +28976,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4216 + "line": 4269 } }, { @@ -28810,7 +28996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4217 + "line": 4270 } } ], @@ -28822,7 +29008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4211 + "line": 4264 } } ], @@ -28872,7 +29058,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 370 + "line": 378 } }, { @@ -28924,7 +29110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 389 + "line": 397 } }, { @@ -28968,7 +29154,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 390 + "line": 398 } }, { @@ -28994,7 +29180,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 391 + "line": 399 } }, { @@ -29034,7 +29220,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 392 + "line": 400 } }, { @@ -29068,7 +29254,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 395 + "line": 403 } }, { @@ -29099,7 +29285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 396 + "line": 404 } }, { @@ -29130,7 +29316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 397 + "line": 405 } }, { @@ -29156,7 +29342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 398 + "line": 406 } }, { @@ -29182,7 +29368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 399 + "line": 407 } }, { @@ -29208,7 +29394,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 400 + "line": 408 } }, { @@ -29237,7 +29423,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 401 + "line": 409 } }, { @@ -29284,7 +29470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 404 + "line": 412 } }, { @@ -29328,7 +29514,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 405 + "line": 413 } }, { @@ -29372,7 +29558,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 406 + "line": 414 } }, { @@ -29398,7 +29584,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 407 + "line": 415 } }, { @@ -29442,7 +29628,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 407 + "line": 415 } }, { @@ -29486,7 +29672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 408 + "line": 416 } }, { @@ -29530,7 +29716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 409 + "line": 417 } }, { @@ -29576,7 +29762,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 410 + "line": 418 } }, { @@ -29622,7 +29808,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 411 + "line": 419 } }, { @@ -29648,7 +29834,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 412 + "line": 420 } }, { @@ -29680,7 +29866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 413 + "line": 421 } }, { @@ -29727,7 +29913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 416 + "line": 424 } }, { @@ -29771,7 +29957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 417 + "line": 425 } }, { @@ -29815,7 +30001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 418 + "line": 426 } }, { @@ -29905,7 +30091,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 432 + "line": 440 } }, { @@ -29928,7 +30114,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 433 + "line": 441 } }, { @@ -30035,7 +30221,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 453 + "line": 461 } }, { @@ -30114,7 +30300,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 454 + "line": 462 } }, { @@ -30137,7 +30323,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 455 + "line": 463 } }, { @@ -30166,7 +30352,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 459 + "line": 467 } }, { @@ -30189,7 +30375,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 460 + "line": 468 } }, { @@ -30230,7 +30416,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 461 + "line": 469 } }, { @@ -30271,7 +30457,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 462 + "line": 470 } }, { @@ -30300,7 +30486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 463 + "line": 471 } }, { @@ -30326,7 +30512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 464 + "line": 472 } }, { @@ -30352,7 +30538,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 465 + "line": 473 } }, { @@ -30378,7 +30564,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 466 + "line": 474 } }, { @@ -30404,7 +30590,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 467 + "line": 475 } }, { @@ -30430,7 +30616,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 468 + "line": 476 } }, { @@ -30459,7 +30645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 469 + "line": 477 } }, { @@ -30517,7 +30703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 473 + "line": 481 } }, { @@ -30585,7 +30771,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 473 + "line": 481 } }, { @@ -30639,7 +30825,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 474 + "line": 482 } }, { @@ -30723,7 +30909,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 475 + "line": 483 } }, { @@ -30763,7 +30949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 476 + "line": 484 } }, { @@ -30817,7 +31003,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 477 + "line": 485 } }, { @@ -30843,7 +31029,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 478 + "line": 486 } }, { @@ -30883,7 +31069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 479 + "line": 487 } }, { @@ -30923,7 +31109,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 480 + "line": 488 } }, { @@ -30963,7 +31149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 481 + "line": 489 } }, { @@ -31017,7 +31203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 482 + "line": 490 } }, { @@ -31071,7 +31257,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 483 + "line": 491 } }, { @@ -31125,7 +31311,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 484 + "line": 492 } }, { @@ -31151,7 +31337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 485 + "line": 493 } }, { @@ -31224,7 +31410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 486 + "line": 494 } }, { @@ -31297,7 +31483,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 487 + "line": 495 } }, { @@ -31370,7 +31556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 488 + "line": 496 } }, { @@ -31416,7 +31602,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 489 + "line": 497 } }, { @@ -31447,7 +31633,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 494 + "line": 502 } }, { @@ -31473,7 +31659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 495 + "line": 503 } }, { @@ -31513,7 +31699,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 496 + "line": 504 } }, { @@ -31553,7 +31739,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 497 + "line": 505 } }, { @@ -31579,7 +31765,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 498 + "line": 506 } }, { @@ -31605,7 +31791,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 499 + "line": 507 } }, { @@ -31646,7 +31832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 500 + "line": 508 } }, { @@ -31687,7 +31873,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 501 + "line": 509 } }, { @@ -31741,7 +31927,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 502 + "line": 510 } }, { @@ -31795,7 +31981,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 503 + "line": 511 } }, { @@ -31869,7 +32055,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 521 + "line": 529 } }, { @@ -31892,7 +32078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 522 + "line": 530 } }, { @@ -31921,7 +32107,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 523 + "line": 531 } }, { @@ -31947,7 +32133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 524 + "line": 532 } }, { @@ -31976,7 +32162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 525 + "line": 533 } }, { @@ -32032,7 +32218,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 528 + "line": 536 } }, { @@ -32082,7 +32268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 529 + "line": 537 } }, { @@ -32108,7 +32294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 530 + "line": 538 } }, { @@ -32146,7 +32332,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 530 + "line": 538 } }, { @@ -32199,7 +32385,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 531 + "line": 539 } }, { @@ -32252,7 +32438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 532 + "line": 540 } }, { @@ -32305,7 +32491,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 533 + "line": 541 } }, { @@ -32358,7 +32544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 534 + "line": 542 } }, { @@ -32384,7 +32570,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 535 + "line": 543 } }, { @@ -32422,7 +32608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 535 + "line": 543 } }, { @@ -32475,7 +32661,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 536 + "line": 544 } }, { @@ -32498,7 +32684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 537 + "line": 545 } }, { @@ -32541,7 +32727,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 540 + "line": 548 } }, { @@ -32564,7 +32750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 541 + "line": 549 } }, { @@ -32604,7 +32790,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 542 + "line": 550 } }, { @@ -32630,7 +32816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 543 + "line": 551 } }, { @@ -32671,7 +32857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 544 + "line": 552 } }, { @@ -32694,7 +32880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 545 + "line": 553 } }, { @@ -32724,7 +32910,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 549 + "line": 557 } }, { @@ -32764,7 +32950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 550 + "line": 558 } }, { @@ -32818,7 +33004,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 550 + "line": 558 } }, { @@ -32858,7 +33044,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 551 + "line": 559 } }, { @@ -32898,7 +33084,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 552 + "line": 560 } }, { @@ -32952,7 +33138,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 552 + "line": 560 } }, { @@ -33000,7 +33186,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 553 + "line": 561 } }, { @@ -33038,7 +33224,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 565 + "line": 573 } }, { @@ -33078,7 +33264,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 566 + "line": 574 } }, { @@ -33104,7 +33290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 567 + "line": 575 } }, { @@ -33130,7 +33316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 568 + "line": 576 } }, { @@ -33156,7 +33342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 569 + "line": 577 } }, { @@ -33182,7 +33368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 570 + "line": 578 } }, { @@ -33222,7 +33408,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 571 + "line": 579 } }, { @@ -33262,7 +33448,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 572 + "line": 580 } }, { @@ -33302,7 +33488,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 573 + "line": 581 } }, { @@ -33328,7 +33514,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 574 + "line": 582 } }, { @@ -33357,7 +33543,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 577 + "line": 585 } }, { @@ -33383,7 +33569,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 578 + "line": 586 } }, { @@ -33438,7 +33624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 578 + "line": 586 } }, { @@ -33464,7 +33650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 579 + "line": 587 } }, { @@ -33490,7 +33676,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 580 + "line": 588 } }, { @@ -33530,7 +33716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 581 + "line": 589 } }, { @@ -33556,7 +33742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 582 + "line": 590 } }, { @@ -33597,7 +33783,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 582 + "line": 590 } }, { @@ -33623,7 +33809,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 583 + "line": 591 } }, { @@ -33664,7 +33850,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 583 + "line": 591 } }, { @@ -33690,7 +33876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 584 + "line": 592 } }, { @@ -33716,7 +33902,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 585 + "line": 593 } }, { @@ -33742,7 +33928,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 586 + "line": 594 } }, { @@ -33768,7 +33954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 587 + "line": 595 } }, { @@ -33794,7 +33980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 588 + "line": 596 } }, { @@ -33820,7 +34006,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 589 + "line": 597 } }, { @@ -33846,7 +34032,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 590 + "line": 598 } }, { @@ -33905,7 +34091,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 603 + "line": 611 } }, { @@ -33970,7 +34156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 604 + "line": 612 } }, { @@ -34016,7 +34202,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 605 + "line": 613 } }, { @@ -34056,7 +34242,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 606 + "line": 614 } }, { @@ -34082,7 +34268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 607 + "line": 615 } }, { @@ -34128,7 +34314,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 608 + "line": 616 } }, { @@ -34190,7 +34376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 609 + "line": 617 } }, { @@ -34233,7 +34419,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 610 + "line": 618 } }, { @@ -34270,7 +34456,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 611 + "line": 619 } }, { @@ -34319,7 +34505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 614 + "line": 622 } }, { @@ -34385,7 +34571,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 614 + "line": 622 } }, { @@ -34438,7 +34624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 615 + "line": 623 } }, { @@ -34495,7 +34681,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 616 + "line": 624 } }, { @@ -34561,7 +34747,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 617 + "line": 625 } }, { @@ -34631,7 +34817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 618 + "line": 626 } }, { @@ -34684,7 +34870,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 619 + "line": 627 } }, { @@ -34741,7 +34927,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 620 + "line": 628 } }, { @@ -34794,7 +34980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 621 + "line": 629 } }, { @@ -34851,7 +35037,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 622 + "line": 630 } }, { @@ -34923,7 +35109,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 623 + "line": 631 } }, { @@ -34999,7 +35185,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 624 + "line": 632 } }, { @@ -35052,7 +35238,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 625 + "line": 633 } }, { @@ -35109,7 +35295,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 626 + "line": 634 } }, { @@ -35155,7 +35341,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 627 + "line": 635 } }, { @@ -35206,7 +35392,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 632 + "line": 640 } }, { @@ -35266,7 +35452,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 632 + "line": 640 } }, { @@ -35312,7 +35498,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 633 + "line": 641 } }, { @@ -35385,7 +35571,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 634 + "line": 642 } }, { @@ -35444,7 +35630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 635 + "line": 643 } }, { @@ -35503,7 +35689,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 636 + "line": 644 } }, { @@ -35575,7 +35761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 637 + "line": 645 } }, { @@ -35647,7 +35833,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 638 + "line": 646 } }, { @@ -35706,7 +35892,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 639 + "line": 647 } }, { @@ -35781,7 +35967,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 640 + "line": 648 } }, { @@ -35852,7 +36038,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 641 + "line": 649 } }, { @@ -35878,7 +36064,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 642 + "line": 650 } }, { @@ -35924,7 +36110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 643 + "line": 651 } }, { @@ -35970,7 +36156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 644 + "line": 652 } }, { @@ -36036,7 +36222,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 644 + "line": 652 } }, { @@ -36097,7 +36283,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 652 + "line": 660 } }, { @@ -36175,7 +36361,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 652 + "line": 660 } }, { @@ -36228,7 +36414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 653 + "line": 661 } }, { @@ -36334,7 +36520,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 653 + "line": 661 } }, { @@ -36406,7 +36592,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 654 + "line": 662 } }, { @@ -36531,7 +36717,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 654 + "line": 662 } }, { @@ -36614,7 +36800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 659 + "line": 667 } }, { @@ -36640,7 +36826,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 660 + "line": 668 } }, { @@ -36741,7 +36927,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 661 + "line": 669 } }, { @@ -36853,7 +37039,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 661 + "line": 669 } }, { @@ -36934,7 +37120,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 662 + "line": 670 } }, { @@ -37029,7 +37215,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 662 + "line": 670 } }, { @@ -37217,7 +37403,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 663 + "line": 671 } }, { @@ -37416,7 +37602,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 663 + "line": 671 } }, { @@ -37475,13 +37661,13 @@ "comments": { "preceding": [ "// Widgets: Drag Sliders", - "// - CTRL+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", + "// - Ctrl+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", "// - For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every function, note that a 'float v[X]' function argument is the same as 'float* v',", "// the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x", "// - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. \"%.3f\" -> 1.234; \"%5.2f secs\" -> 01.23 secs; \"Biscuit: %.0f\" -> Biscuit: 1; etc.", "// - Format string may also be set to NULL or use the default format (\"%f\" or \"%d\").", "// - Speed are per-pixel of mouse movement (v_speed=0.2f: mouse needs to move by 5 pixels to increase value by 1). For keyboard/gamepad navigation, minimum speed is Max(v_speed, minimum_step_at_given_precision).", - "// - Use v_min < v_max to clamp edits to given limits. Note that CTRL+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used.", + "// - Use v_min < v_max to clamp edits to given limits. Note that Ctrl+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used.", "// - Use v_max = FLT_MAX / INT_MAX etc to avoid clamping to a maximum, same with v_min = -FLT_MAX / INT_MIN to avoid clamping to a minimum.", "// - We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them.", "// - Legacy: Pre-1.78 there are DragXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument.", @@ -37492,7 +37678,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 677 + "line": 685 } }, { @@ -37630,7 +37816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 677 + "line": 685 } }, { @@ -37694,7 +37880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 678 + "line": 686 } }, { @@ -37831,7 +38017,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 678 + "line": 686 } }, { @@ -37895,7 +38081,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 679 + "line": 687 } }, { @@ -38032,7 +38218,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 679 + "line": 687 } }, { @@ -38096,7 +38282,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 680 + "line": 688 } }, { @@ -38233,7 +38419,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 680 + "line": 688 } }, { @@ -38311,7 +38497,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 681 + "line": 689 } }, { @@ -38482,7 +38668,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 681 + "line": 689 } }, { @@ -38544,7 +38730,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 682 + "line": 690 } }, { @@ -38682,7 +38868,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 682 + "line": 690 } }, { @@ -38746,7 +38932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 683 + "line": 691 } }, { @@ -38883,7 +39069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 683 + "line": 691 } }, { @@ -38947,7 +39133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 684 + "line": 692 } }, { @@ -39084,7 +39270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 684 + "line": 692 } }, { @@ -39148,7 +39334,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 685 + "line": 693 } }, { @@ -39285,7 +39471,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 685 + "line": 693 } }, { @@ -39363,7 +39549,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 686 + "line": 694 } }, { @@ -39534,7 +39720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 686 + "line": 694 } }, { @@ -39609,7 +39795,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 687 + "line": 695 } }, { @@ -39769,7 +39955,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 687 + "line": 695 } }, { @@ -39857,7 +40043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 688 + "line": 696 } }, { @@ -40030,7 +40216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 688 + "line": 696 } }, { @@ -40115,7 +40301,7 @@ "comments": { "preceding": [ "// Widgets: Regular Sliders", - "// - CTRL+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", + "// - Ctrl+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", "// - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. \"%.3f\" -> 1.234; \"%5.2f secs\" -> 01.23 secs; \"Biscuit: %.0f\" -> Biscuit: 1; etc.", "// - Format string may also be set to NULL or use the default format (\"%f\" or \"%d\").", "// - Legacy: Pre-1.78 there are SliderXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument.", @@ -40126,7 +40312,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 696 + "line": 704 } }, { @@ -40248,7 +40434,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 696 + "line": 704 } }, { @@ -40338,7 +40524,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 697 + "line": 705 } }, { @@ -40459,7 +40645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 697 + "line": 705 } }, { @@ -40549,7 +40735,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 698 + "line": 706 } }, { @@ -40670,7 +40856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 698 + "line": 706 } }, { @@ -40760,7 +40946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 699 + "line": 707 } }, { @@ -40881,7 +41067,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 699 + "line": 707 } }, { @@ -40943,7 +41129,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 700 + "line": 708 } }, { @@ -41064,7 +41250,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 700 + "line": 708 } }, { @@ -41152,7 +41338,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 701 + "line": 709 } }, { @@ -41271,7 +41457,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 701 + "line": 709 } }, { @@ -41361,7 +41547,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 702 + "line": 710 } }, { @@ -41482,7 +41668,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 702 + "line": 710 } }, { @@ -41572,7 +41758,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 703 + "line": 711 } }, { @@ -41693,7 +41879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 703 + "line": 711 } }, { @@ -41783,7 +41969,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 704 + "line": 712 } }, { @@ -41904,7 +42090,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 704 + "line": 712 } }, { @@ -42017,7 +42203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 705 + "line": 713 } }, { @@ -42161,7 +42347,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 705 + "line": 713 } }, { @@ -42287,7 +42473,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 706 + "line": 714 } }, { @@ -42444,7 +42630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 706 + "line": 714 } }, { @@ -42545,7 +42731,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 707 + "line": 715 } }, { @@ -42677,7 +42863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 707 + "line": 715 } }, { @@ -42778,7 +42964,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 708 + "line": 716 } }, { @@ -42910,7 +43096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 708 + "line": 716 } }, { @@ -43036,7 +43222,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 709 + "line": 717 } }, { @@ -43193,7 +43379,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 709 + "line": 717 } }, { @@ -43279,7 +43465,7 @@ "comments": { "preceding": [ "// Widgets: Input with Keyboard", - "// - If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp.", + "// - If you want to use InputText() with std::string or any custom dynamic string type, use the wrapper in misc/cpp/imgui_stdlib.h/.cpp!", "// - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc." ], "attached": "// Implied callback = NULL, user_data = NULL" @@ -43287,7 +43473,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 714 + "line": 722 } }, { @@ -43404,7 +43590,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 714 + "line": 722 } }, { @@ -43479,7 +43665,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 715 + "line": 723 } }, { @@ -43610,7 +43796,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 715 + "line": 723 } }, { @@ -43718,7 +43904,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 716 + "line": 724 } }, { @@ -43854,7 +44040,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 716 + "line": 724 } }, { @@ -43916,7 +44102,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 717 + "line": 725 } }, { @@ -44037,7 +44223,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 717 + "line": 725 } }, { @@ -44101,7 +44287,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 718 + "line": 726 } }, { @@ -44196,7 +44382,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 718 + "line": 726 } }, { @@ -44260,7 +44446,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 719 + "line": 727 } }, { @@ -44355,7 +44541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 719 + "line": 727 } }, { @@ -44419,7 +44605,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 720 + "line": 728 } }, { @@ -44514,7 +44700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 720 + "line": 728 } }, { @@ -44576,7 +44762,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 721 + "line": 729 } }, { @@ -44677,7 +44863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 721 + "line": 729 } }, { @@ -44752,7 +44938,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 722 + "line": 730 } }, { @@ -44827,7 +45013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 723 + "line": 731 } }, { @@ -44902,7 +45088,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 724 + "line": 732 } }, { @@ -44964,7 +45150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 725 + "line": 733 } }, { @@ -45085,7 +45271,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 725 + "line": 733 } }, { @@ -45160,7 +45346,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 726 + "line": 734 } }, { @@ -45306,7 +45492,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 726 + "line": 734 } }, { @@ -45394,7 +45580,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 727 + "line": 735 } }, { @@ -45553,7 +45739,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 727 + "line": 735 } }, { @@ -45635,7 +45821,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 732 + "line": 740 } }, { @@ -45710,7 +45896,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 733 + "line": 741 } }, { @@ -45785,7 +45971,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 734 + "line": 742 } }, { @@ -45880,7 +46066,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 735 + "line": 743 } }, { @@ -45953,7 +46139,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 736 + "line": 744 } }, { @@ -46040,7 +46226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 736 + "line": 744 } }, { @@ -46080,7 +46266,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 737 + "line": 745 } }, { @@ -46129,7 +46315,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 741 + "line": 749 } }, { @@ -46196,12 +46382,12 @@ "is_unformatted_helper": false, "is_static": false, "comments": { - "attached": "// helper variation to easily decorelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet()." + "attached": "// helper variation to easily decorrelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet()." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 742 + "line": 750 } }, { @@ -46273,7 +46459,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 743 + "line": 751 } }, { @@ -46349,7 +46535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 744 + "line": 752 } }, { @@ -46425,7 +46611,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 745 + "line": 753 } }, { @@ -46482,7 +46668,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 746 + "line": 754 } }, { @@ -46564,7 +46750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 747 + "line": 755 } }, { @@ -46646,7 +46832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 748 + "line": 756 } }, { @@ -46735,7 +46921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 749 + "line": 757 } }, { @@ -46824,7 +47010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 750 + "line": 758 } }, { @@ -46870,7 +47056,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 751 + "line": 759 } }, { @@ -46916,7 +47102,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 752 + "line": 760 } }, { @@ -46942,7 +47128,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 753 + "line": 761 } }, { @@ -46968,7 +47154,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 754 + "line": 762 } }, { @@ -47028,7 +47214,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 755 + "line": 763 } }, { @@ -47104,7 +47290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 756 + "line": 764 } }, { @@ -47158,7 +47344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 757 + "line": 765 } }, { @@ -47198,7 +47384,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 758 + "line": 766 } }, { @@ -47249,7 +47435,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 763 + "line": 771 } }, { @@ -47337,7 +47523,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 763 + "line": 771 } }, { @@ -47413,7 +47599,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 764 + "line": 772 } }, { @@ -47503,7 +47689,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 764 + "line": 772 } }, { @@ -47543,7 +47729,7 @@ "comments": { "preceding": [ "// Multi-selection system for Selectable(), Checkbox(), TreeNode() functions [BETA]", - "// - This enables standard multi-selection/range-selection idioms (CTRL+Mouse/Keyboard, SHIFT+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used.", + "// - This enables standard multi-selection/range-selection idioms (Ctrl+Mouse/Keyboard, Shift+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used.", "// - ImGuiSelectionUserData is often used to store your item index within the current view (but may store something else).", "// - Read comments near ImGuiMultiSelectIO for instructions/details and see 'Demo->Widgets->Selection State & Multi-Select' for demo.", "// - TreeNode() is technically supported but... using this correctly is more complicated. You need some sort of linear/random access to your tree,", @@ -47555,7 +47741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 773 + "line": 781 } }, { @@ -47623,7 +47809,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 773 + "line": 781 } }, { @@ -47649,7 +47835,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 774 + "line": 782 } }, { @@ -47686,7 +47872,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 775 + "line": 783 } }, { @@ -47712,7 +47898,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 776 + "line": 784 } }, { @@ -47781,7 +47967,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 785 + "line": 793 } }, { @@ -47807,7 +47993,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 786 + "line": 794 } }, { @@ -47919,7 +48105,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 787 + "line": 795 } }, { @@ -48107,7 +48293,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 788 + "line": 796 } }, { @@ -48306,7 +48492,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 788 + "line": 796 } }, { @@ -48388,7 +48574,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 792 + "line": 800 } }, { @@ -48553,7 +48739,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 792 + "line": 800 } }, { @@ -48713,7 +48899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 793 + "line": 801 } }, { @@ -48946,7 +49132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 793 + "line": 801 } }, { @@ -49024,7 +49210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 794 + "line": 802 } }, { @@ -49189,7 +49375,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 794 + "line": 802 } }, { @@ -49349,7 +49535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 795 + "line": 803 } }, { @@ -49582,7 +49768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 795 + "line": 803 } }, { @@ -49615,7 +49801,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 809 + "line": 817 } }, { @@ -49641,7 +49827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 810 + "line": 818 } }, { @@ -49667,7 +49853,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 811 + "line": 819 } }, { @@ -49693,7 +49879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 812 + "line": 820 } }, { @@ -49739,7 +49925,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 813 + "line": 821 } }, { @@ -49799,7 +49985,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 813 + "line": 821 } }, { @@ -49825,7 +50011,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 814 + "line": 822 } }, { @@ -49871,7 +50057,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 815 + "line": 823 } }, { @@ -49965,7 +50151,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 815 + "line": 823 } }, { @@ -50060,7 +50246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 816 + "line": 824 } }, { @@ -50092,7 +50278,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 822 + "line": 830 } }, { @@ -50118,7 +50304,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 823 + "line": 831 } }, { @@ -50171,7 +50357,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 824 + "line": 832 } }, { @@ -50228,7 +50414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 825 + "line": 833 } }, { @@ -50260,7 +50446,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 831 + "line": 839 } }, { @@ -50313,7 +50499,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 832 + "line": 840 } }, { @@ -50370,7 +50556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 833 + "line": 841 } }, { @@ -50442,7 +50628,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 845 + "line": 853 } }, { @@ -50519,7 +50705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 846 + "line": 854 } }, { @@ -50545,7 +50731,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 847 + "line": 855 } }, { @@ -50615,7 +50801,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 857 + "line": 865 } }, { @@ -50669,7 +50855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 858 + "line": 866 } }, { @@ -50730,7 +50916,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 859 + "line": 867 } }, { @@ -50756,7 +50942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 860 + "line": 868 } }, { @@ -50789,7 +50975,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 867 + "line": 875 } }, { @@ -50850,7 +51036,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 867 + "line": 875 } }, { @@ -50876,7 +51062,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 868 + "line": 876 } }, { @@ -50937,7 +51123,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 868 + "line": 876 } }, { @@ -50963,7 +51149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 869 + "line": 877 } }, { @@ -51024,7 +51210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 869 + "line": 877 } }, { @@ -51090,7 +51276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 875 + "line": 883 } }, { @@ -51186,7 +51372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 898 + "line": 906 } }, { @@ -51284,7 +51470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 898 + "line": 906 } }, { @@ -51310,7 +51496,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 899 + "line": 907 } }, { @@ -51336,7 +51522,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 900 + "line": 908 } }, { @@ -51391,7 +51577,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 900 + "line": 908 } }, { @@ -51417,7 +51603,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 901 + "line": 909 } }, { @@ -51457,7 +51643,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 902 + "line": 910 } }, { @@ -51527,7 +51713,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 912 + "line": 920 } }, { @@ -51612,7 +51798,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 912 + "line": 920 } }, { @@ -51665,7 +51851,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 913 + "line": 921 } }, { @@ -51711,7 +51897,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 914 + "line": 922 } }, { @@ -51737,7 +51923,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 915 + "line": 923 } }, { @@ -51763,7 +51949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 916 + "line": 924 } }, { @@ -51800,7 +51986,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 924 + "line": 932 } }, { @@ -51826,7 +52012,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 925 + "line": 933 } }, { @@ -51852,7 +52038,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 926 + "line": 934 } }, { @@ -51878,7 +52064,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 927 + "line": 935 } }, { @@ -51925,7 +52111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 928 + "line": 936 } }, { @@ -51966,7 +52152,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 929 + "line": 937 } }, { @@ -52019,7 +52205,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 930 + "line": 938 } }, { @@ -52045,7 +52231,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 931 + "line": 939 } }, { @@ -52112,7 +52298,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 932 + "line": 940 } }, { @@ -52142,7 +52328,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 936 + "line": 944 } }, { @@ -52214,7 +52400,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 936 + "line": 944 } }, { @@ -52240,7 +52426,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 937 + "line": 945 } }, { @@ -52266,7 +52452,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 938 + "line": 946 } }, { @@ -52307,7 +52493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 939 + "line": 947 } }, { @@ -52360,7 +52546,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 940 + "line": 948 } }, { @@ -52401,7 +52587,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 941 + "line": 949 } }, { @@ -52454,7 +52640,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 942 + "line": 950 } }, { @@ -52477,7 +52663,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 943 + "line": 951 } }, { @@ -52541,7 +52727,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 947 + "line": 955 } }, { @@ -52567,7 +52753,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 948 + "line": 956 } }, { @@ -52644,7 +52830,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 949 + "line": 957 } }, { @@ -52670,7 +52856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 950 + "line": 958 } }, { @@ -52730,7 +52916,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 951 + "line": 959 } }, { @@ -52776,7 +52962,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 952 + "line": 960 } }, { @@ -52813,25 +52999,31 @@ "comments": { "preceding": [ "// Docking", - "// [BETA API] Enable with io.ConfigFlags |= ImGuiConfigFlags_DockingEnable.", - "// Note: You can use most Docking facilities without calling any API. You DO NOT need to call DockSpace() to use Docking!", - "// - Drag from window title bar or their tab to dock/undock. Hold SHIFT to disable docking.", - "// - Drag from window menu button (upper-left button) to undock an entire node (all windows).", - "// - When io.ConfigDockingWithShift == true, you instead need to hold SHIFT to enable docking.", - "// About dockspaces:", - "// - Use DockSpaceOverViewport() to create a window covering the screen or a specific viewport + a dockspace inside it.", - "// This is often used with ImGuiDockNodeFlags_PassthruCentralNode to make it transparent.", - "// - Use DockSpace() to create an explicit dock node _within_ an existing window. See Docking demo for details.", - "// - Important: Dockspaces need to be submitted _before_ any window they can host. Submit it early in your frame!", - "// - Important: Dockspaces need to be kept alive if hidden, otherwise windows docked into it will be undocked.", - "// e.g. if you have multiple tabs with a dockspace inside each tab: submit the non-visible dockspaces with ImGuiDockNodeFlags_KeepAliveOnly." + "// - Read https://github.com/ocornut/imgui/wiki/Docking for details.", + "// - Enable with io.ConfigFlags |= ImGuiConfigFlags_DockingEnable.", + "// - You can use most Docking facilities without calling any API. You don't necessarily need to call a DockSpaceXXX function to use Docking!", + "// - Drag from window title bar or their tab to dock/undock. Hold SHIFT to disable docking.", + "// - Drag from window menu button (upper-left button) to undock an entire node (all windows).", + "// - When io.ConfigDockingWithShift == true, you instead need to hold SHIFT to enable docking.", + "// - Dockspaces:", + "// - If you want to dock windows into the edge of your screen, most application can simply call DockSpaceOverViewport():", + "// e.g. ImGui::NewFrame(); then ImGui::DockSpaceOverViewport(); // Create a dockspace in main viewport.", + "// or: ImGui::NewFrame(); then ImGui::DockSpaceOverViewport(0, nullptr, ImGuiDockNodeFlags_PassthruCentralNode); // Create a dockspace in main viewport, where central node is transparent.", + "// - A dockspace is an explicit dock node within an existing window.", + "// - DockSpaceOverViewport() basically creates an invisible window covering a viewport, and submit a DockSpace() into it.", + "// - IMPORTANT: Dockspaces need to be submitted _before_ any window they can host. Submit them early in your frame!", + "// - IMPORTANT: Dockspaces need to be kept alive if hidden, otherwise windows docked into it will be undocked.", + "// If you have e.g. multiple tabs with a dockspace inside each tab: submit the non-visible dockspaces with ImGuiDockNodeFlags_KeepAliveOnly.", + "// - Programmatic docking:", + "// - There is no public API yet other than the very limited SetNextWindowDockID() function. Sorry for that!", + "// - Read https://github.com/ocornut/imgui/wiki/Docking for examples of how to use current internal API." ], "attached": "// Implied size = ImVec2(0, 0), flags = 0, window_class = NULL" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 967 + "line": 981 } }, { @@ -52916,7 +53108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 967 + "line": 981 } }, { @@ -52942,7 +53134,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 968 + "line": 982 } }, { @@ -53034,7 +53226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 968 + "line": 982 } }, { @@ -53088,7 +53280,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 969 + "line": 983 } }, { @@ -53134,7 +53326,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 970 + "line": 984 } }, { @@ -53157,7 +53349,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 971 + "line": 985 } }, { @@ -53183,7 +53375,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 972 + "line": 986 } }, { @@ -53228,7 +53420,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 976 + "line": 990 } }, { @@ -53289,7 +53481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 977 + "line": 991 } }, { @@ -53330,7 +53522,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 978 + "line": 992 } }, { @@ -53356,7 +53548,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 979 + "line": 993 } }, { @@ -53382,7 +53574,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 980 + "line": 994 } }, { @@ -53435,7 +53627,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 981 + "line": 995 } }, { @@ -53492,7 +53684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 982 + "line": 996 } }, { @@ -53540,7 +53732,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 989 + "line": 1003 } }, { @@ -53632,7 +53824,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 990 + "line": 1004 } }, { @@ -53658,7 +53850,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 991 + "line": 1005 } }, { @@ -53684,7 +53876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 992 + "line": 1006 } }, { @@ -53750,7 +53942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 993 + "line": 1007 } }, { @@ -53776,7 +53968,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 994 + "line": 1008 } }, { @@ -53808,7 +54000,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 995 + "line": 1009 } }, { @@ -53848,14 +54040,14 @@ "// Disabling [BETA API]", "// - Disable all user interactions and dim items visuals (applying style.DisabledAlpha over current colors)", "// - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled)", - "// - Tooltips windows by exception are opted out of disabling.", + "// - Tooltips windows are automatically opted out of disabling. Note that IsItemHovered() by default returns false on disabled items, unless using ImGuiHoveredFlags_AllowWhenDisabled. ", "// - BeginDisabled(false)/EndDisabled() essentially does nothing but is provided to facilitate use of boolean expressions (as a micro-optimization: if you have tens of thousands of BeginDisabled(false)/EndDisabled() pairs, you might want to reformulate your code to avoid making those calls)" ] }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1002 + "line": 1016 } }, { @@ -53878,7 +54070,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1003 + "line": 1017 } }, { @@ -53947,7 +54139,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1007 + "line": 1021 } }, { @@ -53970,7 +54162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1008 + "line": 1022 } }, { @@ -53999,7 +54191,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1011 + "line": 1025 } }, { @@ -54025,7 +54217,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1012 + "line": 1026 } }, { @@ -54066,7 +54258,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1012 + "line": 1026 } }, { @@ -54109,7 +54301,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1015 + "line": 1029 } }, { @@ -54138,7 +54330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1018 + "line": 1032 } }, { @@ -54184,7 +54376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1023 + "line": 1037 } }, { @@ -54210,7 +54402,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1024 + "line": 1038 } }, { @@ -54236,7 +54428,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1025 + "line": 1039 } }, { @@ -54262,7 +54454,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1026 + "line": 1040 } }, { @@ -54303,7 +54495,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1026 + "line": 1040 } }, { @@ -54329,7 +54521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1027 + "line": 1041 } }, { @@ -54355,7 +54547,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1028 + "line": 1042 } }, { @@ -54381,7 +54573,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1029 + "line": 1043 } }, { @@ -54407,7 +54599,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1030 + "line": 1044 } }, { @@ -54433,7 +54625,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1031 + "line": 1045 } }, { @@ -54459,7 +54651,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1032 + "line": 1046 } }, { @@ -54485,7 +54677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1033 + "line": 1047 } }, { @@ -54511,7 +54703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1034 + "line": 1048 } }, { @@ -54537,7 +54729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1035 + "line": 1049 } }, { @@ -54563,7 +54755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1036 + "line": 1050 } }, { @@ -54589,7 +54781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1037 + "line": 1051 } }, { @@ -54615,7 +54807,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1038 + "line": 1052 } }, { @@ -54641,7 +54833,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1039 + "line": 1053 } }, { @@ -54676,7 +54868,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1045 + "line": 1059 } }, { @@ -54708,7 +54900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1048 + "line": 1062 } }, { @@ -54755,7 +54947,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1048 + "line": 1062 } }, { @@ -54784,7 +54976,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1049 + "line": 1063 } }, { @@ -54831,7 +55023,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1049 + "line": 1063 } }, { @@ -54874,7 +55066,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1052 + "line": 1066 } }, { @@ -54927,7 +55119,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1053 + "line": 1067 } }, { @@ -54953,7 +55145,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1054 + "line": 1068 } }, { @@ -54979,7 +55171,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1055 + "line": 1069 } }, { @@ -55008,7 +55200,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1056 + "line": 1070 } }, { @@ -55054,7 +55246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1057 + "line": 1071 } }, { @@ -55097,7 +55289,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1058 + "line": 1072 } }, { @@ -55123,7 +55315,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1059 + "line": 1073 } }, { @@ -55172,7 +55364,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1062 + "line": 1076 } }, { @@ -55263,7 +55455,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1062 + "line": 1076 } }, { @@ -55305,7 +55497,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1065 + "line": 1079 } }, { @@ -55342,7 +55534,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1066 + "line": 1080 } }, { @@ -55459,7 +55651,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1067 + "line": 1081 } }, { @@ -55576,7 +55768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1068 + "line": 1082 } }, { @@ -55622,7 +55814,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1074 + "line": 1088 } }, { @@ -55662,7 +55854,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1075 + "line": 1089 } }, { @@ -55716,7 +55908,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1075 + "line": 1089 } }, { @@ -55756,7 +55948,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1076 + "line": 1090 } }, { @@ -55796,7 +55988,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1077 + "line": 1091 } }, { @@ -55862,7 +56054,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1078 + "line": 1092 } }, { @@ -55908,7 +56100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1079 + "line": 1093 } }, { @@ -55948,7 +56140,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1080 + "line": 1094 } }, { @@ -56000,8 +56192,8 @@ "preceding": [ "// Inputs Utilities: Shortcut Testing & Routing [BETA]", "// - ImGuiKeyChord = a ImGuiKey + optional ImGuiMod_Alt/ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Super.", - "// ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments)", - "// ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments)", + "// ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments", + "// ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments", "// only ImGuiMod_XXX values are legal to combine with an ImGuiKey. You CANNOT combine two ImGuiKey values.", "// - The general idea is that several callers may register interest in a shortcut, and only one owner gets it.", "// Parent -> call Shortcut(Ctrl+S) // When Parent is focused, Parent gets the shortcut.", @@ -56018,7 +56210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1097 + "line": 1111 } }, { @@ -56069,7 +56261,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1098 + "line": 1112 } }, { @@ -56117,7 +56309,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1106 + "line": 1120 } }, { @@ -56163,7 +56355,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1112 + "line": 1126 } }, { @@ -56203,7 +56395,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1113 + "line": 1127 } }, { @@ -56257,7 +56449,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1113 + "line": 1127 } }, { @@ -56297,7 +56489,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1114 + "line": 1128 } }, { @@ -56337,7 +56529,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1115 + "line": 1129 } }, { @@ -56390,7 +56582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1116 + "line": 1130 } }, { @@ -56430,7 +56622,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1117 + "line": 1131 } }, { @@ -56483,7 +56675,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1118 + "line": 1132 } }, { @@ -56550,7 +56742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1118 + "line": 1132 } }, { @@ -56597,7 +56789,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1119 + "line": 1133 } }, { @@ -56623,7 +56815,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1120 + "line": 1134 } }, { @@ -56649,7 +56841,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1121 + "line": 1135 } }, { @@ -56675,7 +56867,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1122 + "line": 1136 } }, { @@ -56729,7 +56921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1123 + "line": 1137 } }, { @@ -56784,7 +56976,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1124 + "line": 1138 } }, { @@ -56810,7 +57002,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1125 + "line": 1139 } }, { @@ -56851,7 +57043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1125 + "line": 1139 } }, { @@ -56877,7 +57069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1126 + "line": 1140 } }, { @@ -56917,7 +57109,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1127 + "line": 1141 } }, { @@ -56957,7 +57149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1128 + "line": 1142 } }, { @@ -56992,7 +57184,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1132 + "line": 1146 } }, { @@ -57035,7 +57227,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1133 + "line": 1147 } }, { @@ -57087,7 +57279,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1139 + "line": 1153 } }, { @@ -57147,7 +57339,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1140 + "line": 1154 } }, { @@ -57193,7 +57385,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1141 + "line": 1155 } }, { @@ -57243,7 +57435,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1142 + "line": 1156 } }, { @@ -57292,7 +57484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1146 + "line": 1160 } }, { @@ -57329,7 +57521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1147 + "line": 1161 } }, { @@ -57352,7 +57544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1148 + "line": 1162 } }, { @@ -57476,7 +57668,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1149 + "line": 1163 } }, { @@ -57535,7 +57727,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1151 + "line": 1165 } }, { @@ -57598,7 +57790,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1152 + "line": 1166 } }, { @@ -57673,7 +57865,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1159 + "line": 1173 } }, { @@ -57748,7 +57940,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1160 + "line": 1174 } }, { @@ -57788,7 +57980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1161 + "line": 1175 } }, { @@ -57828,7 +58020,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1162 + "line": 1176 } }, { @@ -57859,7 +58051,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1167 + "line": 1181 } }, { @@ -57885,7 +58077,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1168 + "line": 1182 } }, { @@ -57946,7 +58138,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1168 + "line": 1182 } }, { @@ -57972,7 +58164,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1169 + "line": 1183 } }, { @@ -57990,7 +58182,7 @@ }, "arguments": [ { - "name": "id", + "name": "viewport_id", "type": { "declaration": "ImGuiID", "description": { @@ -58015,7 +58207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1170 + "line": 1184 } }, { @@ -58061,7 +58253,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1171 + "line": 1185 } }, { @@ -58733,7 +58925,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2401 + "line": 2435 } }, { @@ -58807,7 +58999,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2570 + "line": 2605 } }, { @@ -58891,7 +59083,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2571 + "line": 2606 } }, { @@ -58962,7 +59154,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2572 + "line": 2607 } }, { @@ -59033,7 +59225,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2573 + "line": 2608 } }, { @@ -59104,7 +59296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2574 + "line": 2609 } }, { @@ -59162,7 +59354,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2575 + "line": 2610 } }, { @@ -59220,7 +59412,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2576 + "line": 2611 } }, { @@ -59278,7 +59470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2577 + "line": 2612 } }, { @@ -59336,7 +59528,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2578 + "line": 2613 } }, { @@ -59394,7 +59586,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2579 + "line": 2614 } }, { @@ -59458,7 +59650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2580 + "line": 2615 } }, { @@ -59542,7 +59734,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2582 + "line": 2617 } }, { @@ -59640,7 +59832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2582 + "line": 2617 } }, { @@ -59698,7 +59890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2583 + "line": 2618 } }, { @@ -59743,7 +59935,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2584 + "line": 2619 } }, { @@ -59788,7 +59980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2585 + "line": 2620 } }, { @@ -59833,58 +60025,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2586 - } - }, - { - "name": "ImGuiIO_ClearInputCharacters", - "original_fully_qualified_name": "ClearInputCharacters", - "return_type": { - "declaration": "void", - "description": { - "kind": "Builtin", - "builtin_type": "void" - } - }, - "arguments": [ - { - "name": "self", - "type": { - "declaration": "ImGuiIO*", - "description": { - "kind": "Pointer", - "is_nullable": false, - "inner_type": { - "kind": "User", - "name": "ImGuiIO" - } - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": true - } - ], - "is_default_argument_helper": false, - "is_manual_helper": false, - "is_imstr_helper": false, - "has_imstr_helper": false, - "is_unformatted_helper": false, - "is_static": false, - "original_class": "ImGuiIO", - "comments": { - "attached": "// [Obsoleted in 1.89.8] Clear the current frame text input buffer. Now included within ClearInputKeys()." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 2588 + "line": 2621 } }, { @@ -59952,7 +60093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2719 + "line": 2753 } }, { @@ -60046,7 +60187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2720 + "line": 2754 } }, { @@ -60088,7 +60229,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2721 + "line": 2755 } }, { @@ -60130,7 +60271,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2722 + "line": 2756 } }, { @@ -60175,7 +60316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2723 + "line": 2757 } }, { @@ -60217,7 +60358,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2774 + "line": 2808 } }, { @@ -60281,7 +60422,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2775 + "line": 2809 } }, { @@ -60326,7 +60467,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2776 + "line": 2810 } }, { @@ -60371,7 +60512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2777 + "line": 2811 } }, { @@ -60416,7 +60557,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2819 + "line": 2853 } }, { @@ -60490,7 +60631,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2820 + "line": 2854 } }, { @@ -60569,7 +60710,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2805 + "line": 2839 } }, { @@ -60653,7 +60794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2806 + "line": 2840 } }, { @@ -60695,7 +60836,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2807 + "line": 2841 } }, { @@ -60737,7 +60878,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2808 + "line": 2842 } }, { @@ -60782,7 +60923,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2809 + "line": 2843 } }, { @@ -60833,7 +60974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2836 + "line": 2870 } }, { @@ -60887,7 +61028,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2837 + "line": 2871 } }, { @@ -60932,7 +61073,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2838 + "line": 2872 } }, { @@ -60977,7 +61118,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2839 + "line": 2873 } }, { @@ -61019,7 +61160,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2840 + "line": 2874 } }, { @@ -61077,7 +61218,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2841 + "line": 2875 } }, { @@ -61132,7 +61273,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2842 + "line": 2876 } }, { @@ -61183,7 +61324,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2843 + "line": 2877 } }, { @@ -61264,7 +61405,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2844 + "line": 2878 } }, { @@ -61332,7 +61473,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2845 + "line": 2879 } }, { @@ -61407,7 +61548,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2846 + "line": 2880 } }, { @@ -61456,7 +61597,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2875 + "line": 2909 } }, { @@ -61528,7 +61669,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2876 + "line": 2910 } }, { @@ -61596,7 +61737,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2877 + "line": 2911 } }, { @@ -61668,7 +61809,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2878 + "line": 2912 } }, { @@ -61736,7 +61877,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2879 + "line": 2913 } }, { @@ -61808,7 +61949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2880 + "line": 2914 } }, { @@ -61876,7 +62017,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2881 + "line": 2915 } }, { @@ -61940,7 +62081,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2882 + "line": 2916 } }, { @@ -62011,7 +62152,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2883 + "line": 2917 } }, { @@ -62091,7 +62232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2889 + "line": 2923 } }, { @@ -62163,7 +62304,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2890 + "line": 2924 } }, { @@ -62235,7 +62376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2891 + "line": 2925 } }, { @@ -62313,7 +62454,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2892 + "line": 2926 } }, { @@ -62360,7 +62501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2895 + "line": 2929 } }, { @@ -62420,7 +62561,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2897 + "line": 2931 } }, { @@ -62489,7 +62630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2939 + "line": 2981 } }, { @@ -62534,7 +62675,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2940 + "line": 2982 } }, { @@ -62579,7 +62720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2941 + "line": 2983 } }, { @@ -62640,7 +62781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2945 + "line": 2987 } }, { @@ -62711,7 +62852,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2946 + "line": 2988 } }, { @@ -62773,84 +62914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2951 - } - }, - { - "name": "ImGuiListClipper_IncludeRangeByIndices", - "original_fully_qualified_name": "IncludeRangeByIndices", - "return_type": { - "declaration": "void", - "description": { - "kind": "Builtin", - "builtin_type": "void" - } - }, - "arguments": [ - { - "name": "self", - "type": { - "declaration": "ImGuiListClipper*", - "description": { - "kind": "Pointer", - "is_nullable": false, - "inner_type": { - "kind": "User", - "name": "ImGuiListClipper" - } - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": true - }, - { - "name": "item_begin", - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": false - }, - { - "name": "item_end", - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": false - } - ], - "is_default_argument_helper": false, - "is_manual_helper": false, - "is_imstr_helper": false, - "has_imstr_helper": false, - "is_unformatted_helper": false, - "is_static": false, - "original_class": "ImGuiListClipper", - "comments": { - "attached": "// [renamed in 1.89.9]" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 2954 + "line": 2993 } }, { @@ -62950,7 +63014,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3037 + "line": 3079 } }, { @@ -63028,7 +63092,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3038 + "line": 3080 } }, { @@ -63089,7 +63153,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3167 + "line": 3210 } }, { @@ -63150,7 +63214,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3168 + "line": 3211 } }, { @@ -63195,7 +63259,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3169 + "line": 3212 } }, { @@ -63258,7 +63322,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3170 + "line": 3213 } }, { @@ -63329,7 +63393,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3171 + "line": 3214 } }, { @@ -63409,7 +63473,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3172 + "line": 3215 } }, { @@ -63467,7 +63531,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3173 + "line": 3216 } }, { @@ -63528,7 +63592,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3186 + "line": 3229 } }, { @@ -63575,12 +63639,12 @@ "// Since 1.83: returns ImTextureID associated with this draw call. Warning: DO NOT assume this is always same as 'TextureId' (we will change this function for an upcoming feature)", "// Since 1.92: removed ImDrawCmd::TextureId field, the getter function must be used!" ], - "attached": "// == (TexRef._TexData ? TexRef._TexData->TexID : TexRef._TexID" + "attached": "// == (TexRef._TexData ? TexRef._TexData->TexID : TexRef._TexID)" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3244 + "line": 3287 } }, { @@ -63625,7 +63689,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3288 + "line": 3331 } }, { @@ -63667,7 +63731,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3289 + "line": 3332 } }, { @@ -63738,7 +63802,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3290 + "line": 3333 } }, { @@ -63796,7 +63860,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3291 + "line": 3334 } }, { @@ -63867,7 +63931,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3292 + "line": 3335 } }, { @@ -63952,7 +64016,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3362 + "line": 3405 } }, { @@ -63994,7 +64058,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3363 + "line": 3406 } }, { @@ -64036,7 +64100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3364 + "line": 3407 } }, { @@ -64091,7 +64155,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3365 + "line": 3408 } }, { @@ -64133,7 +64197,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3366 + "line": 3409 } }, { @@ -64178,7 +64242,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3367 + "line": 3410 } }, { @@ -64223,7 +64287,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3368 + "line": 3411 } }, { @@ -64316,7 +64380,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3377 + "line": 3420 } }, { @@ -64411,7 +64475,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3377 + "line": 3420 } }, { @@ -64495,7 +64559,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3378 + "line": 3421 } }, { @@ -64621,7 +64685,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3378 + "line": 3421 } }, { @@ -64705,7 +64769,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3379 + "line": 3422 } }, { @@ -64817,7 +64881,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3379 + "line": 3422 } }, { @@ -64937,7 +65001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3380 + "line": 3423 } }, { @@ -65047,7 +65111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3381 + "line": 3424 } }, { @@ -65168,7 +65232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3381 + "line": 3424 } }, { @@ -65275,7 +65339,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3382 + "line": 3425 } }, { @@ -65372,7 +65436,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3383 + "line": 3426 } }, { @@ -65480,7 +65544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3383 + "line": 3426 } }, { @@ -65574,7 +65638,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3384 + "line": 3427 } }, { @@ -65658,7 +65722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3385 + "line": 3428 } }, { @@ -65767,7 +65831,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3385 + "line": 3428 } }, { @@ -65862,7 +65926,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3386 + "line": 3429 } }, { @@ -65959,7 +66023,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3387 + "line": 3430 } }, { @@ -66067,7 +66131,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3387 + "line": 3430 } }, { @@ -66161,7 +66225,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3388 + "line": 3431 } }, { @@ -66245,7 +66309,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3389 + "line": 3432 } }, { @@ -66368,7 +66432,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3389 + "line": 3432 } }, { @@ -66452,7 +66516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3390 + "line": 3433 } }, { @@ -66561,7 +66625,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3390 + "line": 3433 } }, { @@ -66651,7 +66715,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3391 + "line": 3434 } }, { @@ -66758,7 +66822,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3391 + "line": 3434 } }, { @@ -66877,7 +66941,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3392 + "line": 3435 } }, { @@ -67047,7 +67111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3392 + "line": 3435 } }, { @@ -67184,7 +67248,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3393 + "line": 3436 } }, { @@ -67308,7 +67372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3394 + "line": 3437 } }, { @@ -67428,7 +67492,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3399 + "line": 3442 } }, { @@ -67515,7 +67579,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3400 + "line": 3443 } }, { @@ -67602,7 +67666,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3401 + "line": 3444 } }, { @@ -67692,7 +67756,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3407 + "line": 3450 } }, { @@ -67815,7 +67879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3407 + "line": 3450 } }, { @@ -67925,7 +67989,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3408 + "line": 3451 } }, { @@ -68102,7 +68166,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3408 + "line": 3451 } }, { @@ -68249,7 +68313,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3409 + "line": 3452 } }, { @@ -68298,7 +68362,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3414 + "line": 3457 } }, { @@ -68353,7 +68417,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3415 + "line": 3458 } }, { @@ -68408,7 +68472,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3416 + "line": 3459 } }, { @@ -68463,7 +68527,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3417 + "line": 3460 } }, { @@ -68518,7 +68582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3418 + "line": 3461 } }, { @@ -68601,7 +68665,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3419 + "line": 3462 } }, { @@ -68709,7 +68773,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3420 + "line": 3463 } }, { @@ -68806,7 +68870,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3421 + "line": 3464 } }, { @@ -68916,7 +68980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3422 + "line": 3465 } }, { @@ -69040,7 +69104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3422 + "line": 3465 } }, { @@ -69138,7 +69202,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3423 + "line": 3466 } }, { @@ -69223,7 +69287,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3424 + "line": 3467 } }, { @@ -69319,7 +69383,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3425 + "line": 3468 } }, { @@ -69404,7 +69468,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3436 + "line": 3479 } }, { @@ -69489,7 +69553,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3436 + "line": 3479 } }, { @@ -69537,7 +69601,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3439 + "line": 3482 } }, { @@ -69583,12 +69647,12 @@ "is_static": false, "original_class": "ImDrawList", "comments": { - "attached": "// Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer." + "attached": "// Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. For multi-threaded rendering, consider using `imgui_threaded_rendering` from https://github.com/ocornut/imgui_club instead." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3440 + "line": 3483 } }, { @@ -69653,7 +69717,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3448 + "line": 3491 } }, { @@ -69695,7 +69759,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3449 + "line": 3492 } }, { @@ -69750,7 +69814,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3450 + "line": 3493 } }, { @@ -69825,7 +69889,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3455 + "line": 3498 } }, { @@ -69893,7 +69957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3456 + "line": 3499 } }, { @@ -69977,7 +70041,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3457 + "line": 3500 } }, { @@ -70084,7 +70148,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3458 + "line": 3501 } }, { @@ -70243,7 +70307,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3459 + "line": 3502 } }, { @@ -70324,7 +70388,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3460 + "line": 3503 } }, { @@ -70379,7 +70443,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3461 + "line": 3504 } }, { @@ -70463,7 +70527,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3462 + "line": 3505 } }, { @@ -70516,7 +70580,7 @@ "is_static": false, "original_class": "ImDrawList", "comments": { - "attached": "// RENAMED in 1.92.x" + "attached": "// RENAMED in 1.92.0" }, "conditionals": [ { @@ -70527,7 +70591,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3466 + "line": 3509 } }, { @@ -70567,7 +70631,7 @@ "is_static": false, "original_class": "ImDrawList", "comments": { - "attached": "// RENAMED in 1.92.x" + "attached": "// RENAMED in 1.92.0" }, "conditionals": [ { @@ -70578,7 +70642,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3467 + "line": 3510 } }, { @@ -70641,7 +70705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3476 + "line": 3519 } }, { @@ -70683,7 +70747,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3477 + "line": 3520 } }, { @@ -70725,7 +70789,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3478 + "line": 3521 } }, { @@ -70767,7 +70831,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3479 + "line": 3522 } }, { @@ -70809,7 +70873,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3480 + "line": 3523 } }, { @@ -70851,7 +70915,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3481 + "line": 3524 } }, { @@ -70893,7 +70957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3482 + "line": 3525 } }, { @@ -70935,7 +70999,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3483 + "line": 3526 } }, { @@ -70990,7 +71054,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3484 + "line": 3527 } }, { @@ -71048,7 +71112,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3485 + "line": 3528 } }, { @@ -71155,7 +71219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3486 + "line": 3529 } }, { @@ -71262,7 +71326,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3487 + "line": 3530 } }, { @@ -71304,7 +71368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3508 + "line": 3551 } }, { @@ -71365,7 +71429,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3509 + "line": 3552 } }, { @@ -71410,7 +71474,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3510 + "line": 3553 } }, { @@ -71468,7 +71532,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3511 + "line": 3554 } }, { @@ -71549,7 +71613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3581 + "line": 3624 } }, { @@ -71591,7 +71655,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3582 + "line": 3625 } }, { @@ -71636,7 +71700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3583 + "line": 3626 } }, { @@ -71707,7 +71771,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3584 + "line": 3627 } }, { @@ -71752,7 +71816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3585 + "line": 3628 } }, { @@ -71797,7 +71861,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3586 + "line": 3629 } }, { @@ -71839,7 +71903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3587 + "line": 3630 } }, { @@ -71884,7 +71948,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3588 + "line": 3631 } }, { @@ -71938,14 +72002,15 @@ "original_class": "ImTextureData", "comments": { "preceding": [ - "// Called by Renderer backend" - ], - "attached": "// Call after creating or destroying the texture. Never modify TexID directly!" + "// Called by Renderer backend", + "// - Call SetTexID() and SetStatus() after honoring texture requests. Never modify TexID and Status directly!", + "// - A backend may decide to destroy a texture that we did not request to destroy, which is fine (e.g. freeing resources), but we immediately set the texture back in _WantCreate mode." + ] }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3591 + "line": 3636 } }, { @@ -71997,13 +72062,10 @@ "is_unformatted_helper": false, "is_static": false, "original_class": "ImTextureData", - "comments": { - "attached": "// Call after honoring a request. Never modify Status directly!" - }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3592 + "line": 3637 } }, { @@ -72045,7 +72107,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3661 + "line": 3706 } }, { @@ -72106,7 +72168,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3662 + "line": 3707 } }, { @@ -72164,7 +72226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3663 + "line": 3708 } }, { @@ -72222,7 +72284,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3664 + "line": 3709 } }, { @@ -72306,7 +72368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3665 + "line": 3710 } }, { @@ -72370,7 +72432,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3666 + "line": 3711 } }, { @@ -72431,7 +72493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3667 + "line": 3712 } }, { @@ -72495,7 +72557,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3719 + "line": 3764 } }, { @@ -72560,7 +72622,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3720 + "line": 3765 } }, { @@ -72678,7 +72740,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3721 + "line": 3766 } }, { @@ -72809,7 +72871,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3722 + "line": 3767 } }, { @@ -72943,7 +73005,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3723 + "line": 3768 } }, { @@ -73064,7 +73126,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3724 + "line": 3769 } }, { @@ -73122,7 +73184,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3725 + "line": 3770 } }, { @@ -73162,12 +73224,12 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// Clear everything (input fonts, output glyphs/textures)" + "attached": "// Clear everything (input fonts, output glyphs/textures)." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3727 + "line": 3772 } }, { @@ -73212,7 +73274,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3728 + "line": 3773 } }, { @@ -73276,7 +73338,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3729 + "line": 3774 } }, { @@ -73324,7 +73386,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3732 + "line": 3777 } }, { @@ -73369,7 +73431,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3733 + "line": 3778 } }, { @@ -73414,7 +73476,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3734 + "line": 3779 } }, { @@ -73459,7 +73521,7 @@ "// - User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().", "// - The pitch is always = Width * BytesPerPixels (1 or 4)", "// - Building in RGBA32 format is provided for convenience and compatibility, but note that unless you manually manipulate or copy color data into", - "// the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste.", + "// the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste).", "// - From 1.92 with backends supporting ImGuiBackendFlags_RendererHasTextures:", "// - Calling Build(), GetTexDataAsAlpha8(), GetTexDataAsRGBA32() is not needed.", "// - In backend: replace calls to ImFontAtlas::SetTexID() with calls to ImTextureData::SetTexID() after honoring texture creation." @@ -73475,7 +73537,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3745 + "line": 3790 } }, { @@ -73594,7 +73656,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3746 + "line": 3791 } }, { @@ -73713,7 +73775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3747 + "line": 3792 } }, { @@ -73777,7 +73839,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3748 + "line": 3793 } }, { @@ -73841,7 +73903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3749 + "line": 3794 } }, { @@ -73895,7 +73957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3750 + "line": 3795 } }, { @@ -73949,7 +74011,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3758 + "line": 3803 } }, { @@ -74012,7 +74074,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3764 + "line": 3809 } }, { @@ -74069,7 +74131,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3765 + "line": 3810 } }, { @@ -74126,7 +74188,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3766 + "line": 3811 } }, { @@ -74183,7 +74245,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3767 + "line": 3812 } }, { @@ -74240,7 +74302,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3768 + "line": 3813 } }, { @@ -74297,7 +74359,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3769 + "line": 3814 } }, { @@ -74354,7 +74416,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3770 + "line": 3815 } }, { @@ -74411,7 +74473,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3771 + "line": 3816 } }, { @@ -74497,7 +74559,7 @@ "preceding": [ "// Register and retrieve custom rectangles", "// - You can request arbitrary rectangles to be packed into the atlas, for your own purpose.", - "// - Since 1.92.X, packing is done immediately in the function call (previously packing was done during the Build call)", + "// - Since 1.92.0, packing is done immediately in the function call (previously packing was done during the Build call)", "// - You can render your pixels into the texture right after calling the AddCustomRect() functions.", "// - VERY IMPORTANT:", "// - Texture may be created/resized at any time when calling ImGui or ImFontAtlas functions.", @@ -74518,7 +74580,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3795 + "line": 3840 } }, { @@ -74576,7 +74638,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3796 + "line": 3841 } }, { @@ -74653,7 +74715,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3797 + "line": 3842 } }, { @@ -74719,7 +74781,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// RENAMED in 1.92.X" + "attached": "// RENAMED in 1.92.0" }, "conditionals": [ { @@ -74730,7 +74792,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3849 + "line": 3894 } }, { @@ -74789,7 +74851,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// OBSOLETED in 1.92.X" + "attached": "// OBSOLETED in 1.92.0" }, "conditionals": [ { @@ -74800,7 +74862,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3850 + "line": 3895 } }, { @@ -74894,7 +74956,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// OBSOLETED in 1.92.X" + "attached": "// OBSOLETED in 1.92.0" }, "conditionals": [ { @@ -74905,7 +74967,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3851 + "line": 3896 } }, { @@ -75027,7 +75089,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// OBSOLETED in 1.92.X: Use custom ImFontLoader in ImFontConfig" + "attached": "// OBSOLETED in 1.92.0: Use custom ImFontLoader in ImFontConfig" }, "conditionals": [ { @@ -75038,7 +75100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3852 + "line": 3897 } }, { @@ -75173,7 +75235,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// ADDED AND OBSOLETED in 1.92.X" + "attached": "// ADDED AND OBSOLETED in 1.92.0" }, "conditionals": [ { @@ -75184,7 +75246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3853 + "line": 3898 } }, { @@ -75226,7 +75288,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3890 + "line": 3935 } }, { @@ -75287,7 +75349,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3891 + "line": 3936 } }, { @@ -75348,7 +75410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3892 + "line": 3937 } }, { @@ -75403,7 +75465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3893 + "line": 3938 } }, { @@ -75458,7 +75520,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3894 + "line": 3939 } }, { @@ -75513,7 +75575,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3937 + "line": 3982 } }, { @@ -75558,7 +75620,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3938 + "line": 3983 } }, { @@ -75612,7 +75674,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3939 + "line": 3984 } }, { @@ -75678,7 +75740,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3944 + "line": 3989 } }, { @@ -75753,7 +75815,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3944 + "line": 3989 } }, { @@ -75851,12 +75913,12 @@ "is_static": false, "original_class": "ImFont", "comments": { - "attached": "// Implied text_end = NULL, remaining = NULL" + "attached": "// Implied text_end = NULL, out_remaining = NULL" }, "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3945 + "line": 3990 } }, { @@ -75966,7 +76028,7 @@ "is_instance_pointer": false }, { - "name": "remaining", + "name": "out_remaining", "type": { "declaration": "const char**", "description": { @@ -75996,13 +76058,10 @@ "is_unformatted_helper": false, "is_static": false, "original_class": "ImFont", - "comments": { - "attached": "// utf8" - }, "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3945 + "line": 3990 } }, { @@ -76114,7 +76173,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3946 + "line": 3991 } }, { @@ -76227,7 +76286,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3947 + "line": 3992 } }, { @@ -76357,7 +76416,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3947 + "line": 3992 } }, { @@ -76509,17 +76568,17 @@ "is_instance_pointer": false }, { - "name": "cpu_fine_clip", + "name": "flags", "type": { - "declaration": "bool", + "declaration": "ImDrawTextFlags", "description": { - "kind": "Builtin", - "builtin_type": "bool" + "kind": "User", + "name": "ImDrawTextFlags" } }, "is_array": false, "is_varargs": false, - "default_value": "false", + "default_value": "0", "is_instance_pointer": false } ], @@ -76533,7 +76592,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3948 + "line": 3993 } }, { @@ -76651,7 +76710,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3950 + "line": 3995 } }, { @@ -76698,7 +76757,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3954 + "line": 3999 } }, { @@ -76769,7 +76828,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3955 + "line": 4000 } }, { @@ -76837,7 +76896,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3956 + "line": 4001 } }, { @@ -76887,7 +76946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4041 + "line": 4087 } }, { @@ -76932,7 +76991,97 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4042 + "line": 4088 + } + }, + { + "name": "ImGuiPlatformIO_ClearPlatformHandlers", + "original_fully_qualified_name": "ClearPlatformHandlers", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "self", + "type": { + "declaration": "ImGuiPlatformIO*", + "description": { + "kind": "Pointer", + "is_nullable": false, + "inner_type": { + "kind": "User", + "name": "ImGuiPlatformIO" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": true + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "original_class": "ImGuiPlatformIO", + "comments": { + "attached": "// Clear all Platform_XXX fields. Typically called on Platform Backend shutdown." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 4248 + } + }, + { + "name": "ImGuiPlatformIO_ClearRendererHandlers", + "original_fully_qualified_name": "ClearRendererHandlers", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "self", + "type": { + "declaration": "ImGuiPlatformIO*", + "description": { + "kind": "Pointer", + "is_nullable": false, + "inner_type": { + "kind": "User", + "name": "ImGuiPlatformIO" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": true + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "original_class": "ImGuiPlatformIO", + "comments": { + "attached": "// Clear all Renderer_XXX fields. Typically called on Renderer Backend shutdown." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 4249 } }, { @@ -76983,7 +77132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4232 + "line": 4285 } }, { @@ -77029,7 +77178,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4233 + "line": 4286 } }, { @@ -77143,7 +77292,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4235 + "line": 4288 } }, { @@ -77191,7 +77340,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4237 + "line": 4290 } }, { @@ -77220,7 +77369,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4238 + "line": 4291 } }, { @@ -77263,7 +77412,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4239 + "line": 4292 } }, { @@ -77292,7 +77441,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4240 + "line": 4293 } }, { @@ -77324,7 +77473,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4241 + "line": 4294 } }, { @@ -77356,7 +77505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4242 + "line": 4295 } }, { @@ -77388,7 +77537,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4243 + "line": 4296 } }, { @@ -77450,7 +77599,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4245 + "line": 4298 } }, { @@ -77520,7 +77669,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4245 + "line": 4298 } }, { @@ -77549,7 +77698,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4246 + "line": 4299 } }, { @@ -77602,7 +77751,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4249 + "line": 4302 } }, { @@ -77823,7 +77972,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4250 + "line": 4303 } }, { @@ -78055,7 +78204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4250 + "line": 4303 } }, { @@ -78276,7 +78425,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4251 + "line": 4304 } }, { @@ -78508,42 +78657,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4251 - } - }, - { - "name": "ImGui_SetItemAllowOverlap", - "original_fully_qualified_name": "ImGui::SetItemAllowOverlap", - "return_type": { - "declaration": "void", - "description": { - "kind": "Builtin", - "builtin_type": "void" - } - }, - "arguments": [], - "is_default_argument_helper": false, - "is_manual_helper": false, - "is_imstr_helper": false, - "has_imstr_helper": false, - "is_unformatted_helper": false, - "is_static": false, - "comments": { - "preceding": [ - "// OBSOLETED in 1.89.7 (from June 2023)" - ], - "attached": "// Use SetNextItemAllowOverlap() before item." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 4253 + "line": 4304 } } ] diff --git a/src/cached/dcimgui_impl_vulkan.cpp b/src/cached/dcimgui_impl_vulkan.cpp index 4ddc38c..a36571b 100644 --- a/src/cached/dcimgui_impl_vulkan.cpp +++ b/src/cached/dcimgui_impl_vulkan.cpp @@ -49,9 +49,14 @@ CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkan_SetMinImageCount(uint32_t min_ima ::ImGui_ImplVulkan_SetMinImageCount(min_image_count); } -CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkan_UpdateTexture(ImTextureData* tex) +CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkan_CreateMainPipeline(const cimgui::ImGui_ImplVulkan_PipelineInfo* info) { // NOTE(mason): fixed this binding by hand + ::ImGui_ImplVulkan_CreateMainPipeline(reinterpret_cast(info)); +} + +CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkan_UpdateTexture(ImTextureData* tex) +{ ::ImGui_ImplVulkan_UpdateTexture(reinterpret_cast<::ImTextureData*>(tex)); } @@ -75,39 +80,44 @@ CIMGUI_IMPL_API bool cimgui::cImGui_ImplVulkan_LoadFunctionsEx(uint32_t api_vers return ::ImGui_ImplVulkan_LoadFunctions(api_version, loader_func, user_data); } -CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance, VkPhysicalDevice physical_device, VkDevice device, cimgui::ImGui_ImplVulkanH_Window* wd, uint32_t queue_family, const VkAllocationCallbacks* allocator, int w, int h, uint32_t min_image_count) +CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance, VkPhysicalDevice physical_device, VkDevice device, cimgui::ImGui_ImplVulkanH_Window* wd, uint32_t queue_family, const VkAllocationCallbacks* allocator, int w, int h, uint32_t min_image_count, VkImageUsageFlags image_usage) { - ::ImGui_ImplVulkanH_CreateOrResizeWindow(instance, physical_device, device, reinterpret_cast<::ImGui_ImplVulkanH_Window*>(wd), queue_family, allocator, w, h, min_image_count); + ::ImGui_ImplVulkanH_CreateOrResizeWindow(instance, physical_device, device, reinterpret_cast<::ImGui_ImplVulkanH_Window*>(wd), queue_family, allocator, w, h, min_image_count, image_usage); } -CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkanH_DestroyWindow(VkInstance instance, VkDevice device, cimgui::ImGui_ImplVulkanH_Window* wd, const VkAllocationCallbacks* allocator) +CIMGUI_IMPL_API void cimgui::cImGui_ImplVulkanH_DestroyWindow(VkInstance instance, VkDevice device, cimgui::ImGui_ImplVulkanH_Window* wd, const VkAllocationCallbacks* allocator) { ::ImGui_ImplVulkanH_DestroyWindow(instance, device, reinterpret_cast<::ImGui_ImplVulkanH_Window*>(wd), allocator); } -CIMGUI_IMPL_API VkSurfaceFormatKHR cimgui::cImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkFormat* request_formats, int request_formats_count, VkColorSpaceKHR request_color_space) +CIMGUI_IMPL_API VkSurfaceFormatKHR cimgui::cImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkFormat* request_formats, int request_formats_count, VkColorSpaceKHR request_color_space) { return ::ImGui_ImplVulkanH_SelectSurfaceFormat(physical_device, surface, request_formats, request_formats_count, request_color_space); } -CIMGUI_IMPL_API VkPresentModeKHR cimgui::cImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkPresentModeKHR* request_modes, int request_modes_count) +CIMGUI_IMPL_API VkPresentModeKHR cimgui::cImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkPresentModeKHR* request_modes, int request_modes_count) { return ::ImGui_ImplVulkanH_SelectPresentMode(physical_device, surface, request_modes, request_modes_count); } -CIMGUI_IMPL_API VkPhysicalDevice cimgui::cImGui_ImplVulkanH_SelectPhysicalDevice(VkInstance instance) +CIMGUI_IMPL_API VkPhysicalDevice cimgui::cImGui_ImplVulkanH_SelectPhysicalDevice(VkInstance instance) { return ::ImGui_ImplVulkanH_SelectPhysicalDevice(instance); } -CIMGUI_IMPL_API uint32_t cimgui::cImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device) +CIMGUI_IMPL_API uint32_t cimgui::cImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device) { return ::ImGui_ImplVulkanH_SelectQueueFamilyIndex(physical_device); } -CIMGUI_IMPL_API int cimgui::cImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode) +CIMGUI_IMPL_API int cimgui::cImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode) { return ::ImGui_ImplVulkanH_GetMinImageCountFromPresentMode(present_mode); } +CIMGUI_IMPL_API cimgui::ImGui_ImplVulkanH_Window* cimgui::cImGui_ImplVulkanH_GetWindowDataFromViewport(ImGuiViewport* viewport) +{ + return reinterpret_cast<::cimgui::ImGui_ImplVulkanH_Window*>(::ImGui_ImplVulkanH_GetWindowDataFromViewport(reinterpret_cast<::ImGuiViewport*>(viewport))); +} + #endif // #ifndef IMGUI_DISABLE diff --git a/src/cached/dcimgui_impl_vulkan.h b/src/cached/dcimgui_impl_vulkan.h index a940823..f5c1c9e 100644 --- a/src/cached/dcimgui_impl_vulkan.h +++ b/src/cached/dcimgui_impl_vulkan.h @@ -31,6 +31,7 @@ // Read comments in imgui_impl_vulkan.h. // Auto-generated forward declarations for C header +typedef struct ImGui_ImplVulkan_PipelineInfo_t ImGui_ImplVulkan_PipelineInfo; typedef struct ImGui_ImplVulkan_InitInfo_t ImGui_ImplVulkan_InitInfo; typedef struct ImGui_ImplVulkan_RenderState_t ImGui_ImplVulkan_RenderState; typedef struct ImGui_ImplVulkanH_FrameSemaphores_t ImGui_ImplVulkanH_FrameSemaphores; @@ -54,9 +55,14 @@ extern "C" // If you have no idea what this is, leave it alone! //#define IMGUI_IMPL_VULKAN_NO_PROTOTYPES -// Convenience support for Volk +// [Configuration] Convenience support for Volk // (you can also technically use IMGUI_IMPL_VULKAN_NO_PROTOTYPES + wrap Volk via ImGui_ImplVulkan_LoadFunctions().) +// (When using Volk from directory outside your include directories list you can specify full path to the volk.h header, +// for example when using Volk from VulkanSDK and using include_directories(${Vulkan_INCLUDE_DIRS})' from 'find_package(Vulkan REQUIRED)') //#define IMGUI_IMPL_VULKAN_USE_VOLK +//#define IMGUI_IMPL_VULKAN_VOLK_FILENAME +//#define IMGUI_IMPL_VULKAN_VOLK_FILENAME // Default +// Reminder: make those changes in your imconfig.h file, not here! #if defined(IMGUI_IMPL_VULKAN_NO_PROTOTYPES)&&!defined(VK_NO_PROTOTYPES) #define VK_NO_PROTOTYPES @@ -66,7 +72,11 @@ extern "C" #endif // #if defined(VK_USE_PLATFORM_WIN32_KHR)&&!defined(NOMINMAX) // Vulkan includes #ifdef IMGUI_IMPL_VULKAN_USE_VOLK +#ifdef IMGUI_IMPL_VULKAN_VOLK_FILENAME +#include IMGUI_IMPL_VULKAN_VOLK_FILENAME +#else #include +#endif // #ifdef IMGUI_IMPL_VULKAN_VOLK_FILENAME #else #include #endif // #ifdef IMGUI_IMPL_VULKAN_USE_VOLK @@ -76,6 +86,22 @@ extern "C" // Backend uses a small number of descriptors per font atlas + as many as additional calls done to ImGui_ImplVulkan_AddTexture(). #define IMGUI_IMPL_VULKAN_MINIMUM_IMAGE_SAMPLER_POOL_SIZE (8) // Minimum per atlas +// Specify settings to create pipeline and swapchain +struct ImGui_ImplVulkan_PipelineInfo_t +{ + // For Main viewport only + VkRenderPass RenderPass; // Ignored if using dynamic rendering + + // For Main and Secondary viewports + uint32_t Subpass; // + VkSampleCountFlagBits MSAASamples /* = {} */; // 0 defaults to VK_SAMPLE_COUNT_1_BIT +#ifdef IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING + VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo; // Optional, valid if .sType == VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO_KHR +#endif // #ifdef IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING + // For Secondary viewports only (created/managed by backend) + VkImageUsageFlags SwapChainImageUsage; // Extra flags for vkCreateSwapchainKHR() calls for secondary viewports. We automatically add VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT. You can add e.g. VK_IMAGE_USAGE_TRANSFER_SRC_BIT if you need to capture from viewports. +}; + // Initialization data, for ImGui_ImplVulkan_Init() // [Please zero-clear before use!] // - About descriptor pool: @@ -83,38 +109,43 @@ extern "C" // and must contain a pool size large enough to hold a small number of VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER descriptors. // - As an convenience, by setting DescriptorPoolSize > 0 the backend will create one for you. // - About dynamic rendering: -// - When using dynamic rendering, set UseDynamicRendering=true and fill PipelineRenderingCreateInfo structure. +// - When using dynamic rendering, set UseDynamicRendering=true + fill PipelineInfoMain.PipelineRenderingCreateInfo structure. struct ImGui_ImplVulkan_InitInfo_t { - uint32_t ApiVersion; // Fill with API version of Instance, e.g. VK_API_VERSION_1_3 or your value of VkApplicationInfo::apiVersion. May be lower than header version (VK_HEADER_VERSION_COMPLETE) - VkInstance Instance; - VkPhysicalDevice PhysicalDevice; - VkDevice Device; - uint32_t QueueFamily; - VkQueue Queue; - VkDescriptorPool DescriptorPool; // See requirements in note above; ignored if using DescriptorPoolSize > 0 - VkRenderPass RenderPass; // Ignored if using dynamic rendering - uint32_t MinImageCount; // >= 2 - uint32_t ImageCount; // >= MinImageCount - VkSampleCountFlagBits MSAASamples; // 0 defaults to VK_SAMPLE_COUNT_1_BIT + uint32_t ApiVersion; // Fill with API version of Instance, e.g. VK_API_VERSION_1_3 or your value of VkApplicationInfo::apiVersion. May be lower than header version (VK_HEADER_VERSION_COMPLETE) + VkInstance Instance; + VkPhysicalDevice PhysicalDevice; + VkDevice Device; + uint32_t QueueFamily; + VkQueue Queue; + VkDescriptorPool DescriptorPool; // See requirements in note above; ignored if using DescriptorPoolSize > 0 + uint32_t DescriptorPoolSize; // Optional: set to create internal descriptor pool automatically instead of using DescriptorPool. + uint32_t MinImageCount; // >= 2 + uint32_t ImageCount; // >= MinImageCount + VkPipelineCache PipelineCache; // Optional - // (Optional) - VkPipelineCache PipelineCache; - uint32_t Subpass; - - // (Optional) Set to create internal descriptor pool instead of using DescriptorPool - uint32_t DescriptorPoolSize; + // Pipeline + ImGui_ImplVulkan_PipelineInfo PipelineInfoMain; // Infos for Main Viewport (created by app/user) + ImGui_ImplVulkan_PipelineInfo PipelineInfoForViewports; // Infos for Secondary Viewports (created by backend) + //VkRenderPass RenderPass; // --> Since 2025/09/26: set 'PipelineInfoMain.RenderPass' instead + //uint32_t Subpass; // --> Since 2025/09/26: set 'PipelineInfoMain.Subpass' instead + //VkSampleCountFlagBits MSAASamples; // --> Since 2025/09/26: set 'PipelineInfoMain.MSAASamples' instead + //VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo; // Since 2025/09/26: set 'PipelineInfoMain.PipelineRenderingCreateInfo' instead // (Optional) Dynamic Rendering - // Need to explicitly enable VK_KHR_dynamic_rendering extension to use this, even for Vulkan 1.3. - bool UseDynamicRendering; -#ifdef IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING - VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo; -#endif // #ifdef IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING + // Need to explicitly enable VK_KHR_dynamic_rendering extension to use this, even for Vulkan 1.3 + setup PipelineInfoMain.PipelineRenderingCreateInfo and PipelineInfoViewports.PipelineRenderingCreateInfo. + bool UseDynamicRendering; + // (Optional) Allocation, Debugging - const VkAllocationCallbacks* Allocator; + const VkAllocationCallbacks* Allocator; void (*CheckVkResultFn)(VkResult err); - VkDeviceSize MinAllocationSize; // Minimum allocation size. Set to 1024*1024 to satisfy zealous best practices validation layer and waste a little memory. + VkDeviceSize MinAllocationSize; // Minimum allocation size. Set to 1024*1024 to satisfy zealous best practices validation layer and waste a little memory. + + // (Optional) Customize default vertex/fragment shaders. + // - if .sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO we use specified structs, otherwise we use defaults. + // - Shader inputs/outputs need to match ours. Code/data pointed to by the structure needs to survive for whole during of backend usage. + VkShaderModuleCreateInfo CustomShaderVertCreateInfo; + VkShaderModuleCreateInfo CustomShaderFragCreateInfo; }; typedef struct ImDrawData_t ImDrawData; @@ -126,6 +157,11 @@ CIMGUI_IMPL_API void cImGui_ImplVulkan_RenderDrawData(ImDrawData* draw_data, VkC CIMGUI_IMPL_API void cImGui_ImplVulkan_RenderDrawDataEx(ImDrawData* draw_data, VkCommandBuffer command_buffer, VkPipeline pipeline /* = VK_NULL_HANDLE */); CIMGUI_IMPL_API void cImGui_ImplVulkan_SetMinImageCount(uint32_t min_image_count); // To override MinImageCount after initialization (e.g. if swap chain is recreated) +// (Advanced) Use e.g. if you need to recreate pipeline without reinitializing the backend (see #8110, #8111) +// The main window pipeline will be created by ImGui_ImplVulkan_Init() if possible (== RenderPass xor (UseDynamicRendering && PipelineRenderingCreateInfo->sType == VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO_KHR)) +// Else, the pipeline can be created, or re-created, using ImGui_ImplVulkan_CreateMainPipeline() before rendering. +CIMGUI_IMPL_API void cImGui_ImplVulkan_CreateMainPipeline(const ImGui_ImplVulkan_PipelineInfo* info); + // (Advanced) Use e.g. if you need to precisely control the timing of texture updates (e.g. for staged rendering), by setting ImDrawData::Textures = NULL to handle this manually. CIMGUI_IMPL_API void cImGui_ImplVulkan_UpdateTexture(ImTextureData* tex); @@ -164,25 +200,26 @@ struct ImGui_ImplVulkan_RenderState_t // // Your engine/app will likely _already_ have code to setup all that stuff (swap chain, // render pass, frame buffers, etc.). You may read this code if you are curious, but -// it is recommended you use you own custom tailored code to do equivalent work. +// it is recommended you use your own custom tailored code to do equivalent work. // // We don't provide a strong guarantee that we won't change those functions API. // // The ImGui_ImplVulkanH_XXX functions should NOT interact with any of the state used -// by the regular ImGui_ImplVulkan_XXX functions). +// by the regular ImGui_ImplVulkan_XXX functions. //------------------------------------------------------------------------- typedef struct ImGui_ImplVulkanH_Frame_t ImGui_ImplVulkanH_Frame; typedef struct ImGui_ImplVulkanH_Window_t ImGui_ImplVulkanH_Window; // Helpers -CIMGUI_IMPL_API void cImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance, VkPhysicalDevice physical_device, VkDevice device, ImGui_ImplVulkanH_Window* wd, uint32_t queue_family, const VkAllocationCallbacks* allocator, int w, int h, uint32_t min_image_count); -CIMGUI_IMPL_API void cImGui_ImplVulkanH_DestroyWindow(VkInstance instance, VkDevice device, ImGui_ImplVulkanH_Window* wd, const VkAllocationCallbacks* allocator); -CIMGUI_IMPL_API VkSurfaceFormatKHR cImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkFormat* request_formats, int request_formats_count, VkColorSpaceKHR request_color_space); -CIMGUI_IMPL_API VkPresentModeKHR cImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkPresentModeKHR* request_modes, int request_modes_count); -CIMGUI_IMPL_API VkPhysicalDevice cImGui_ImplVulkanH_SelectPhysicalDevice(VkInstance instance); -CIMGUI_IMPL_API uint32_t cImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device); -CIMGUI_IMPL_API int cImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode); +CIMGUI_IMPL_API void cImGui_ImplVulkanH_CreateOrResizeWindow(VkInstance instance, VkPhysicalDevice physical_device, VkDevice device, ImGui_ImplVulkanH_Window* wd, uint32_t queue_family, const VkAllocationCallbacks* allocator, int w, int h, uint32_t min_image_count, VkImageUsageFlags image_usage); +CIMGUI_IMPL_API void cImGui_ImplVulkanH_DestroyWindow(VkInstance instance, VkDevice device, ImGui_ImplVulkanH_Window* wd, const VkAllocationCallbacks* allocator); +CIMGUI_IMPL_API VkSurfaceFormatKHR cImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkFormat* request_formats, int request_formats_count, VkColorSpaceKHR request_color_space); +CIMGUI_IMPL_API VkPresentModeKHR cImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice physical_device, VkSurfaceKHR surface, const VkPresentModeKHR* request_modes, int request_modes_count); +CIMGUI_IMPL_API VkPhysicalDevice cImGui_ImplVulkanH_SelectPhysicalDevice(VkInstance instance); +CIMGUI_IMPL_API uint32_t cImGui_ImplVulkanH_SelectQueueFamilyIndex(VkPhysicalDevice physical_device); +CIMGUI_IMPL_API int cImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode); +CIMGUI_IMPL_API ImGui_ImplVulkanH_Window* cImGui_ImplVulkanH_GetWindowDataFromViewport(ImGuiViewport* viewport); // Access to Vulkan objects associated with a viewport (e.g to export a screenshot) // Helper structure to hold the data needed by one rendering frame // (Used by example's main.cpp. Used by multi-viewport features. Probably NOT used by your own engine/app.) diff --git a/src/cached/dcimgui_impl_vulkan.json b/src/cached/dcimgui_impl_vulkan.json index 647915d..4e74888 100644 --- a/src/cached/dcimgui_impl_vulkan.json +++ b/src/cached/dcimgui_impl_vulkan.json @@ -11,7 +11,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 50 + "line": 55 } }, { @@ -25,7 +25,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 53 + "line": 58 } }, { @@ -39,7 +39,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 63 + "line": 72 } }, { @@ -51,13 +51,149 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 67 + "line": 76 } } ], "enums": [], "typedefs": [], "structs": [ + { + "name": "ImGui_ImplVulkan_PipelineInfo", + "original_fully_qualified_name": "ImGui_ImplVulkan_PipelineInfo", + "kind": "struct", + "by_value": false, + "forward_declaration": false, + "is_anonymous": false, + "fields": [ + { + "name": "RenderPass", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "VkRenderPass", + "description": { + "kind": "User", + "name": "VkRenderPass" + } + }, + "comments": { + "preceding": [ + "// For Main viewport only" + ], + "attached": "// Ignored if using dynamic rendering" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 82 + } + }, + { + "name": "Subpass", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "uint32_t", + "description": { + "kind": "User", + "name": "uint32_t" + } + }, + "comments": { + "preceding": [ + "// For Main and Secondary viewports" + ], + "attached": "//" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 85 + } + }, + { + "name": "MSAASamples", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "VkSampleCountFlagBits", + "description": { + "kind": "User", + "name": "VkSampleCountFlagBits" + } + }, + "default_value": "{}", + "comments": { + "attached": "// 0 defaults to VK_SAMPLE_COUNT_1_BIT" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 86 + } + }, + { + "name": "PipelineRenderingCreateInfo", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "VkPipelineRenderingCreateInfoKHR", + "description": { + "kind": "User", + "name": "VkPipelineRenderingCreateInfoKHR" + } + }, + "comments": { + "attached": "// Optional, valid if .sType == VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO_KHR" + }, + "conditionals": [ + { + "condition": "ifdef", + "expression": "IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 88 + } + }, + { + "name": "SwapChainImageUsage", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "VkImageUsageFlags", + "description": { + "kind": "User", + "name": "VkImageUsageFlags" + } + }, + "comments": { + "preceding": [ + "// For Secondary viewports only (created/managed by backend)" + ], + "attached": "// Extra flags for vkCreateSwapchainKHR() calls for secondary viewports. We automatically add VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT. You can add e.g. VK_IMAGE_USAGE_TRANSFER_SRC_BIT if you need to capture from viewports." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 92 + } + } + ], + "comments": { + "preceding": [ + "// Specify settings to create pipeline and swapchain" + ] + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 79 + } + }, { "name": "ImGui_ImplVulkan_InitInfo", "original_fully_qualified_name": "ImGui_ImplVulkan_InitInfo", @@ -83,7 +219,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 79 + "line": 105 } }, { @@ -100,7 +236,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 80 + "line": 106 } }, { @@ -117,7 +253,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 81 + "line": 107 } }, { @@ -134,7 +270,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 82 + "line": 108 } }, { @@ -151,7 +287,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 83 + "line": 109 } }, { @@ -168,7 +304,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 84 + "line": 110 } }, { @@ -188,27 +324,27 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 85 + "line": 111 } }, { - "name": "RenderPass", + "name": "DescriptorPoolSize", "is_array": false, "is_anonymous": false, "type": { - "declaration": "VkRenderPass", + "declaration": "uint32_t", "description": { "kind": "User", - "name": "VkRenderPass" + "name": "uint32_t" } }, "comments": { - "attached": "// Ignored if using dynamic rendering" + "attached": "// Optional: set to create internal descriptor pool automatically instead of using DescriptorPool." }, "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 86 + "line": 112 } }, { @@ -228,7 +364,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 87 + "line": 113 } }, { @@ -248,27 +384,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 88 - } - }, - { - "name": "MSAASamples", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "VkSampleCountFlagBits", - "description": { - "kind": "User", - "name": "VkSampleCountFlagBits" - } - }, - "comments": { - "attached": "// 0 defaults to VK_SAMPLE_COUNT_1_BIT" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_impl_vulkan.h", - "line": 89 + "line": 114 } }, { @@ -283,53 +399,55 @@ } }, "comments": { - "preceding": [ - "// (Optional)" - ] + "attached": "// Optional" }, "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 92 + "line": 115 } }, { - "name": "Subpass", + "name": "PipelineInfoMain", "is_array": false, "is_anonymous": false, "type": { - "declaration": "uint32_t", + "declaration": "ImGui_ImplVulkan_PipelineInfo", "description": { "kind": "User", - "name": "uint32_t" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_impl_vulkan.h", - "line": 93 - } - }, - { - "name": "DescriptorPoolSize", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "uint32_t", - "description": { - "kind": "User", - "name": "uint32_t" + "name": "ImGui_ImplVulkan_PipelineInfo" } }, "comments": { "preceding": [ - "// (Optional) Set to create internal descriptor pool instead of using DescriptorPool" - ] + "// Pipeline" + ], + "attached": "// Infos for Main Viewport (created by app/user)" }, "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 96 + "line": 118 + } + }, + { + "name": "PipelineInfoForViewports", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGui_ImplVulkan_PipelineInfo", + "description": { + "kind": "User", + "name": "ImGui_ImplVulkan_PipelineInfo" + } + }, + "comments": { + "attached": "// Infos for Secondary Viewports (created by backend)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 119 } }, { @@ -346,36 +464,13 @@ "comments": { "preceding": [ "// (Optional) Dynamic Rendering", - "// Need to explicitly enable VK_KHR_dynamic_rendering extension to use this, even for Vulkan 1.3." + "// Need to explicitly enable VK_KHR_dynamic_rendering extension to use this, even for Vulkan 1.3 + setup PipelineInfoMain.PipelineRenderingCreateInfo and PipelineInfoViewports.PipelineRenderingCreateInfo." ] }, "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 100 - } - }, - { - "name": "PipelineRenderingCreateInfo", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "VkPipelineRenderingCreateInfoKHR", - "description": { - "kind": "User", - "name": "VkPipelineRenderingCreateInfoKHR" - } - }, - "conditionals": [ - { - "condition": "ifdef", - "expression": "IMGUI_IMPL_VULKAN_HAS_DYNAMIC_RENDERING" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui_impl_vulkan.h", - "line": 102 + "line": 127 } }, { @@ -403,7 +498,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 106 + "line": 130 } }, { @@ -484,7 +579,48 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 108 + "line": 132 + } + }, + { + "name": "CustomShaderVertCreateInfo", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "VkShaderModuleCreateInfo", + "description": { + "kind": "User", + "name": "VkShaderModuleCreateInfo" + } + }, + "comments": { + "preceding": [ + "// (Optional) Customize default vertex/fragment shaders.", + "// - if .sType == VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO we use specified structs, otherwise we use defaults.", + "// - Shader inputs/outputs need to match ours. Code/data pointed to by the structure needs to survive for whole during of backend usage." + ] + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 137 + } + }, + { + "name": "CustomShaderFragCreateInfo", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "VkShaderModuleCreateInfo", + "description": { + "kind": "User", + "name": "VkShaderModuleCreateInfo" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 138 } } ], @@ -497,13 +633,13 @@ "// and must contain a pool size large enough to hold a small number of VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER descriptors.", "// - As an convenience, by setting DescriptorPoolSize > 0 the backend will create one for you.", "// - About dynamic rendering:", - "// - When using dynamic rendering, set UseDynamicRendering=true and fill PipelineRenderingCreateInfo structure." + "// - When using dynamic rendering, set UseDynamicRendering=true + fill PipelineInfoMain.PipelineRenderingCreateInfo structure." ] }, "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 77 + "line": 103 } }, { @@ -542,7 +678,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 136 + "line": 171 } }, { @@ -559,7 +695,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 137 + "line": 172 } }, { @@ -576,7 +712,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 138 + "line": 173 } } ], @@ -590,7 +726,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 134 + "line": 169 } }, { @@ -615,7 +751,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 180 + "line": 216 } }, { @@ -632,7 +768,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 181 + "line": 217 } }, { @@ -649,7 +785,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 182 + "line": 218 } }, { @@ -666,7 +802,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 183 + "line": 219 } }, { @@ -683,7 +819,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 184 + "line": 220 } }, { @@ -700,7 +836,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 185 + "line": 221 } } ], @@ -714,7 +850,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 178 + "line": 214 } }, { @@ -739,7 +875,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 190 + "line": 226 } }, { @@ -756,14 +892,14 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 191 + "line": 227 } } ], "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 188 + "line": 224 } }, { @@ -788,7 +924,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 198 + "line": 234 } }, { @@ -805,7 +941,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 199 + "line": 235 } }, { @@ -822,7 +958,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 200 + "line": 236 } }, { @@ -839,7 +975,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 201 + "line": 237 } }, { @@ -856,7 +992,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 202 + "line": 238 } }, { @@ -873,7 +1009,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 203 + "line": 239 } }, { @@ -890,7 +1026,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 204 + "line": 240 } }, { @@ -907,7 +1043,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 205 + "line": 241 } }, { @@ -924,7 +1060,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 206 + "line": 242 } }, { @@ -941,7 +1077,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 207 + "line": 243 } }, { @@ -961,7 +1097,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 208 + "line": 244 } }, { @@ -981,7 +1117,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 209 + "line": 245 } }, { @@ -1001,7 +1137,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 210 + "line": 246 } }, { @@ -1021,7 +1157,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 211 + "line": 247 } }, { @@ -1038,7 +1174,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 212 + "line": 248 } }, { @@ -1055,7 +1191,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 213 + "line": 249 } } ], @@ -1068,7 +1204,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 196 + "line": 232 } } ], @@ -1115,7 +1251,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 112 + "line": 142 } }, { @@ -1138,7 +1274,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 113 + "line": 143 } }, { @@ -1161,7 +1297,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 114 + "line": 144 } }, { @@ -1217,7 +1353,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 115 + "line": 145 } }, { @@ -1284,7 +1420,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 115 + "line": 145 } }, { @@ -1324,7 +1460,57 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 116 + "line": 146 + } + }, + { + "name": "cImGui_ImplVulkan_CreateMainPipeline", + "original_fully_qualified_name": "ImGui_ImplVulkan_CreateMainPipeline", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "info", + "type": { + "declaration": "const ImGui_ImplVulkan_PipelineInfo*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGui_ImplVulkan_PipelineInfo", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "comments": { + "preceding": [ + "// (Advanced) Use e.g. if you need to recreate pipeline without reinitializing the backend (see #8110, #8111)", + "// The main window pipeline will be created by ImGui_ImplVulkan_Init() if possible (== RenderPass xor (UseDynamicRendering && PipelineRenderingCreateInfo->sType == VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO_KHR))", + "// Else, the pipeline can be created, or re-created, using ImGui_ImplVulkan_CreateMainPipeline() before rendering." + ] + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 151 } }, { @@ -1369,7 +1555,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 119 + "line": 154 } }, { @@ -1439,7 +1625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 124 + "line": 159 } }, { @@ -1476,7 +1662,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 125 + "line": 160 } }, { @@ -1617,7 +1803,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 129 + "line": 164 } }, { @@ -1768,7 +1954,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 129 + "line": 164 } }, { @@ -1907,6 +2093,19 @@ "is_array": false, "is_varargs": false, "is_instance_pointer": false + }, + { + "name": "image_usage", + "type": { + "declaration": "VkImageUsageFlags", + "description": { + "kind": "User", + "name": "VkImageUsageFlags" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false } ], "is_default_argument_helper": false, @@ -1923,7 +2122,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 167 + "line": 202 } }, { @@ -2008,7 +2207,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 168 + "line": 203 } }, { @@ -2103,7 +2302,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 169 + "line": 204 } }, { @@ -2185,7 +2384,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 170 + "line": 205 } }, { @@ -2222,7 +2421,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 171 + "line": 206 } }, { @@ -2259,7 +2458,7 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 172 + "line": 207 } }, { @@ -2296,7 +2495,53 @@ "is_internal": false, "source_location": { "filename": "imgui_impl_vulkan.h", - "line": 173 + "line": 208 + } + }, + { + "name": "cImGui_ImplVulkanH_GetWindowDataFromViewport", + "original_fully_qualified_name": "ImGui_ImplVulkanH_GetWindowDataFromViewport", + "return_type": { + "declaration": "ImGui_ImplVulkanH_Window*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGui_ImplVulkanH_Window" + } + } + }, + "arguments": [ + { + "name": "viewport", + "type": { + "declaration": "ImGuiViewport*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiViewport" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "comments": { + "attached": "// Access to Vulkan objects associated with a viewport (e.g to export a screenshot)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_impl_vulkan.h", + "line": 209 } } ] diff --git a/src/cached/dcimgui_internal.cpp b/src/cached/dcimgui_internal.cpp index f330d4d..263f117 100644 --- a/src/cached/dcimgui_internal.cpp +++ b/src/cached/dcimgui_internal.cpp @@ -187,26 +187,31 @@ static inline ::ImGuiListClipperRange ConvertToCPP_ImGuiListClipperRange(const c #ifndef IMGUI_DISABLE -CIMGUI_API ImGuiID cimgui::cImHashData(const void* data, size_t data_size) +CIMGUI_API ImGuiID cimgui::cImHashData(const void* data, size_t data_size) { return ::ImHashData(data, data_size); } -CIMGUI_API ImGuiID cimgui::cImHashDataEx(const void* data, size_t data_size, ImGuiID seed) +CIMGUI_API ImGuiID cimgui::cImHashDataEx(const void* data, size_t data_size, ImGuiID seed) { return ::ImHashData(data, data_size, seed); } -CIMGUI_API ImGuiID cimgui::cImHashStr(const char* data) +CIMGUI_API ImGuiID cimgui::cImHashStr(const char* data) { return ::ImHashStr(data); } -CIMGUI_API ImGuiID cimgui::cImHashStrEx(const char* data, size_t data_size, ImGuiID seed) +CIMGUI_API ImGuiID cimgui::cImHashStrEx(const char* data, size_t data_size, ImGuiID seed) { return ::ImHashStr(data, data_size, seed); } +CIMGUI_API const char* cimgui::cImHashSkipUncontributingPrefix(const char* label) +{ + return ::ImHashSkipUncontributingPrefix(label); +} + CIMGUI_API ImU32 cimgui::cImAlphaBlendColors(ImU32 col_a, ImU32 col_b) { return ::ImAlphaBlendColors(col_a, col_b); @@ -414,9 +419,14 @@ CIMGUI_API int cimgui::cImTextCountUtf8BytesFromStr(const ImWchar* in_te return ::ImTextCountUtf8BytesFromStr(in_text, in_text_end); } -CIMGUI_API const char* cimgui::cImTextFindPreviousUtf8Codepoint(const char* in_text_start, const char* in_text_curr) +CIMGUI_API const char* cimgui::cImTextFindPreviousUtf8Codepoint(const char* in_text_start, const char* in_p) { - return ::ImTextFindPreviousUtf8Codepoint(in_text_start, in_text_curr); + return ::ImTextFindPreviousUtf8Codepoint(in_text_start, in_p); +} + +CIMGUI_API const char* cimgui::cImTextFindValidUtf8CodepointEnd(const char* in_text_start, const char* in_text_end, const char* in_p) +{ + return ::ImTextFindValidUtf8CodepointEnd(in_text_start, in_text_end, in_p); } CIMGUI_API int cimgui::cImTextCountLines(const char* in_text, const char* in_text_end) @@ -424,6 +434,21 @@ CIMGUI_API int cimgui::cImTextCountLines(const char* in_text, const char return ::ImTextCountLines(in_text, in_text_end); } +CIMGUI_API cimgui::ImVec2 cimgui::cImFontCalcTextSizeEx(cimgui::ImFont* font, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end_display, const char* text_end, const char** out_remaining, cimgui::ImVec2* out_offset, ImDrawTextFlags flags) +{ + return ConvertFromCPP_ImVec2(::ImFontCalcTextSizeEx(reinterpret_cast<::ImFont*>(font), size, max_width, wrap_width, text_begin, text_end_display, text_end, out_remaining, reinterpret_cast<::ImVec2*>(out_offset), flags)); +} + +CIMGUI_API const char* cimgui::cImFontCalcWordWrapPositionEx(cimgui::ImFont* font, float size, const char* text, const char* text_end, float wrap_width, ImDrawTextFlags flags) +{ + return ::ImFontCalcWordWrapPositionEx(reinterpret_cast<::ImFont*>(font), size, text, text_end, wrap_width, flags); +} + +CIMGUI_API const char* cimgui::cImTextCalcWordWrapNextLineStart(const char* text, const char* text_end, ImDrawTextFlags flags) +{ + return ::ImTextCalcWordWrapNextLineStart(text, text_end, flags); +} + #ifdef IMGUI_DISABLE_FILE_FUNCTIONS CIMGUI_API ImFileHandle cimgui::cImFileOpen(const char* __unnamed_arg0__, const char* __unnamed_arg1__) @@ -989,77 +1014,82 @@ CIMGUI_API void cimgui::ImGuiInputTextDeactivatedState_ClearFreeMemory(cimgui::I reinterpret_cast<::ImGuiInputTextDeactivatedState*>(self)->ClearFreeMemory(); } -CIMGUI_API void cimgui::ImGuiInputTextState_ClearText(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_ClearText(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->ClearText(); } -CIMGUI_API void cimgui::ImGuiInputTextState_ClearFreeMemory(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_ClearFreeMemory(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->ClearFreeMemory(); } -CIMGUI_API void cimgui::ImGuiInputTextState_OnKeyPressed(cimgui::ImGuiInputTextState* self, int key) +CIMGUI_API void cimgui::ImGuiInputTextState_OnKeyPressed(cimgui::ImGuiInputTextState* self, int key) { reinterpret_cast<::ImGuiInputTextState*>(self)->OnKeyPressed(key); } -CIMGUI_API void cimgui::ImGuiInputTextState_OnCharPressed(cimgui::ImGuiInputTextState* self, unsigned int c) +CIMGUI_API void cimgui::ImGuiInputTextState_OnCharPressed(cimgui::ImGuiInputTextState* self, unsigned int c) { reinterpret_cast<::ImGuiInputTextState*>(self)->OnCharPressed(c); } -CIMGUI_API void cimgui::ImGuiInputTextState_CursorAnimReset(cimgui::ImGuiInputTextState* self) +CIMGUI_API float cimgui::ImGuiInputTextState_GetPreferredOffsetX(const cimgui::ImGuiInputTextState* self) +{ + return reinterpret_cast(self)->GetPreferredOffsetX(); +} + +CIMGUI_API void cimgui::ImGuiInputTextState_CursorAnimReset(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->CursorAnimReset(); } -CIMGUI_API void cimgui::ImGuiInputTextState_CursorClamp(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_CursorClamp(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->CursorClamp(); } -CIMGUI_API bool cimgui::ImGuiInputTextState_HasSelection(const cimgui::ImGuiInputTextState* self) +CIMGUI_API bool cimgui::ImGuiInputTextState_HasSelection(const cimgui::ImGuiInputTextState* self) { return reinterpret_cast(self)->HasSelection(); } -CIMGUI_API void cimgui::ImGuiInputTextState_ClearSelection(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_ClearSelection(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->ClearSelection(); } -CIMGUI_API int cimgui::ImGuiInputTextState_GetCursorPos(const cimgui::ImGuiInputTextState* self) +CIMGUI_API int cimgui::ImGuiInputTextState_GetCursorPos(const cimgui::ImGuiInputTextState* self) { return reinterpret_cast(self)->GetCursorPos(); } -CIMGUI_API int cimgui::ImGuiInputTextState_GetSelectionStart(const cimgui::ImGuiInputTextState* self) +CIMGUI_API int cimgui::ImGuiInputTextState_GetSelectionStart(const cimgui::ImGuiInputTextState* self) { return reinterpret_cast(self)->GetSelectionStart(); } -CIMGUI_API int cimgui::ImGuiInputTextState_GetSelectionEnd(const cimgui::ImGuiInputTextState* self) +CIMGUI_API int cimgui::ImGuiInputTextState_GetSelectionEnd(const cimgui::ImGuiInputTextState* self) { return reinterpret_cast(self)->GetSelectionEnd(); } -CIMGUI_API void cimgui::ImGuiInputTextState_SelectAll(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_SelectAll(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->SelectAll(); } -CIMGUI_API void cimgui::ImGuiInputTextState_ReloadUserBufAndSelectAll(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_ReloadUserBufAndSelectAll(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->ReloadUserBufAndSelectAll(); } -CIMGUI_API void cimgui::ImGuiInputTextState_ReloadUserBufAndKeepSelection(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_ReloadUserBufAndKeepSelection(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->ReloadUserBufAndKeepSelection(); } -CIMGUI_API void cimgui::ImGuiInputTextState_ReloadUserBufAndMoveToEnd(cimgui::ImGuiInputTextState* self) +CIMGUI_API void cimgui::ImGuiInputTextState_ReloadUserBufAndMoveToEnd(cimgui::ImGuiInputTextState* self) { reinterpret_cast<::ImGuiInputTextState*>(self)->ReloadUserBufAndMoveToEnd(); } @@ -1318,6 +1348,11 @@ CIMGUI_API bool cimgui::ImGui_IsWindowChildOf(cimgui::ImGuiWindow* w return ::ImGui::IsWindowChildOf(reinterpret_cast<::ImGuiWindow*>(window), reinterpret_cast<::ImGuiWindow*>(potential_parent), popup_hierarchy, dock_hierarchy); } +CIMGUI_API bool cimgui::ImGui_IsWindowInBeginStack(cimgui::ImGuiWindow* window) +{ + return ::ImGui::IsWindowInBeginStack(reinterpret_cast<::ImGuiWindow*>(window)); +} + CIMGUI_API bool cimgui::ImGui_IsWindowWithinBeginStackOf(cimgui::ImGuiWindow* window, cimgui::ImGuiWindow* potential_parent) { return ::ImGui::IsWindowWithinBeginStackOf(reinterpret_cast<::ImGuiWindow*>(window), reinterpret_cast<::ImGuiWindow*>(potential_parent)); @@ -1838,6 +1873,11 @@ CIMGUI_API void cimgui::ImGui_ShrinkWidths(cimgui::ImGuiShrinkWidthItem* items ::ImGui::ShrinkWidths(reinterpret_cast<::ImGuiShrinkWidthItem*>(items), count, width_excess, width_min); } +CIMGUI_API void cimgui::ImGui_CalcClipRectVisibleItemsY(cimgui::ImRect clip_rect, cimgui::ImVec2 pos, float items_height, int* out_visible_start, int* out_visible_end) +{ + ::ImGui::CalcClipRectVisibleItemsY(ConvertToCPP_ImRect(clip_rect), ConvertToCPP_ImVec2(pos), items_height, out_visible_start, out_visible_end); +} + CIMGUI_API const cimgui::ImGuiStyleVarInfo* cimgui::ImGui_GetStyleVarInfo(ImGuiStyleVar idx) { return reinterpret_cast(::ImGui::GetStyleVarInfo(idx)); @@ -2573,6 +2613,16 @@ CIMGUI_API bool cimgui::ImGui_BeginDragDropTargetCustom(cimgui::ImRect bb, ImGui return ::ImGui::BeginDragDropTargetCustom(ConvertToCPP_ImRect(bb), id); } +CIMGUI_API bool cimgui::ImGui_BeginDragDropTargetViewport(cimgui::ImGuiViewport* viewport) +{ + return ::ImGui::BeginDragDropTargetViewport(reinterpret_cast<::ImGuiViewport*>(viewport)); +} + +CIMGUI_API bool cimgui::ImGui_BeginDragDropTargetViewportEx(cimgui::ImGuiViewport* viewport, const cimgui::ImRect* p_bb) +{ + return ::ImGui::BeginDragDropTargetViewport(reinterpret_cast<::ImGuiViewport*>(viewport), reinterpret_cast(p_bb)); +} + CIMGUI_API void cimgui::ImGui_ClearDragDrop(void) { ::ImGui::ClearDragDrop(); @@ -2583,9 +2633,14 @@ CIMGUI_API bool cimgui::ImGui_IsDragDropPayloadBeingAccepted(void) return ::ImGui::IsDragDropPayloadBeingAccepted(); } -CIMGUI_API void cimgui::ImGui_RenderDragDropTargetRect(cimgui::ImRect bb, cimgui::ImRect item_clip_rect) +CIMGUI_API void cimgui::ImGui_RenderDragDropTargetRectForItem(cimgui::ImRect bb) { - ::ImGui::RenderDragDropTargetRect(ConvertToCPP_ImRect(bb), ConvertToCPP_ImRect(item_clip_rect)); + ::ImGui::RenderDragDropTargetRectForItem(ConvertToCPP_ImRect(bb)); +} + +CIMGUI_API void cimgui::ImGui_RenderDragDropTargetRectEx(cimgui::ImDrawList* draw_list, cimgui::ImRect bb) +{ + ::ImGui::RenderDragDropTargetRectEx(reinterpret_cast<::ImDrawList*>(draw_list), ConvertToCPP_ImRect(bb)); } CIMGUI_API cimgui::ImGuiTypingSelectRequest* cimgui::ImGui_GetTypingSelectRequest(void) @@ -2983,6 +3038,16 @@ CIMGUI_API cimgui::ImGuiTabBar* cimgui::ImGui_GetCurrentTabBar(void) return reinterpret_cast<::cimgui::ImGuiTabBar*>(::ImGui::GetCurrentTabBar()); } +CIMGUI_API cimgui::ImGuiTabBar* cimgui::ImGui_TabBarFindByID(ImGuiID id) +{ + return reinterpret_cast<::cimgui::ImGuiTabBar*>(::ImGui::TabBarFindByID(id)); +} + +CIMGUI_API void cimgui::ImGui_TabBarRemove(cimgui::ImGuiTabBar* tab_bar) +{ + ::ImGui::TabBarRemove(reinterpret_cast<::ImGuiTabBar*>(tab_bar)); +} + CIMGUI_API bool cimgui::ImGui_BeginTabBarEx(cimgui::ImGuiTabBar* tab_bar, cimgui::ImRect bb, ImGuiTabBarFlags flags) { return ::ImGui::BeginTabBarEx(reinterpret_cast<::ImGuiTabBar*>(tab_bar), ConvertToCPP_ImRect(bb), flags); @@ -3804,7 +3869,7 @@ CIMGUI_API int cimgui::cImFontAtlasRectId_GetIndex(ImFontAtlasRect return ::ImFontAtlasRectId_GetIndex(id); } -CIMGUI_API int cimgui::cImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id) +CIMGUI_API unsigned int cimgui::cImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id) { return ::ImFontAtlasRectId_GetGeneration(id); } @@ -3834,6 +3899,11 @@ CIMGUI_API void cimgui::cImFontAtlasBuildSetupFontLoader(cimgui::ImFontAtlas* at ::ImFontAtlasBuildSetupFontLoader(reinterpret_cast<::ImFontAtlas*>(atlas), reinterpret_cast(font_loader)); } +CIMGUI_API void cimgui::cImFontAtlasBuildNotifySetFont(cimgui::ImFontAtlas* atlas, cimgui::ImFont* old_font, cimgui::ImFont* new_font) +{ + ::ImFontAtlasBuildNotifySetFont(reinterpret_cast<::ImFontAtlas*>(atlas), reinterpret_cast<::ImFont*>(old_font), reinterpret_cast<::ImFont*>(new_font)); +} + CIMGUI_API void cimgui::cImFontAtlasBuildUpdatePointers(cimgui::ImFontAtlas* atlas) { ::ImFontAtlasBuildUpdatePointers(reinterpret_cast<::ImFontAtlas*>(atlas)); diff --git a/src/cached/dcimgui_internal.h b/src/cached/dcimgui_internal.h index e319012..0b3aac4 100644 --- a/src/cached/dcimgui_internal.h +++ b/src/cached/dcimgui_internal.h @@ -2,7 +2,7 @@ // **DO NOT EDIT DIRECTLY** // https://github.com/dearimgui/dear_bindings -// dear imgui, v1.92.2b +// dear imgui, v1.92.5 struct ImVector_ImFontBakedPtr_t { int Size; int Capacity; ImFontBaked** Data; }; // Instantiation of ImVector struct ImVector_ImFontAtlasPtr_t { int Size; int Capacity; ImFontAtlas** Data; }; // Instantiation of ImVector // (internal structures/api) @@ -84,8 +84,8 @@ extern "C" #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of struct 'xxx' // when IMGUI_API is set to__declspec(dllexport) -#pragma warning (disable: 26812) // The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). [MSVC Static Analyzer) #pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). #if defined(_MSC_VER)&& _MSC_VER >= 1922 #pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types #endif// MSVC 2019 16.2 or later @@ -212,6 +212,7 @@ typedef struct ImGuiViewportP_t ImGuiViewportP; typedef struct ImGuiDebugAllocEntry_t ImGuiDebugAllocEntry; typedef struct ImGuiDebugAllocInfo_t ImGuiDebugAllocInfo; typedef struct ImGuiStackLevelInfo_t ImGuiStackLevelInfo; +typedef struct ImGuiDebugItemPathQuery_t ImGuiDebugItemPathQuery; typedef struct ImGuiIDStackTool_t ImGuiIDStackTool; typedef struct ImGuiTableCellData_t ImGuiTableCellData; typedef struct ImGuiTableColumnSettings_t ImGuiTableColumnSettings; @@ -288,6 +289,7 @@ typedef int ImGuiDataAuthority; // -> enum ImGuiDataAuthority_ // Enum: fo typedef int ImGuiLayoutType; // -> enum ImGuiLayoutType_ // Enum: Horizontal or vertical // Flags +typedef int ImDrawTextFlags; // -> enum ImDrawTextFlags_ // Flags: for ImTextCalcWordWrapPositionEx() typedef int ImGuiActivateFlags; // -> enum ImGuiActivateFlags_ // Flags: for navigation/focus function (will be for ActivateItem() later) typedef int ImGuiDebugLogFlags; // -> enum ImGuiDebugLogFlags_ // Flags: for ShowDebugLogWindow(), g.DebugLogFlags typedef int ImGuiFocusRequestFlags; // -> enum ImGuiFocusRequestFlags_ // Flags: for FocusWindow() @@ -303,6 +305,7 @@ typedef int ImGuiSeparatorFlags; // -> enum ImGuiSeparatorFlags_ // F typedef int ImGuiTextFlags; // -> enum ImGuiTextFlags_ // Flags: for TextEx() typedef int ImGuiTooltipFlags; // -> enum ImGuiTooltipFlags_ // Flags: for BeginTooltipEx() typedef int ImGuiTypingSelectFlags; // -> enum ImGuiTypingSelectFlags_ // Flags: for GetTypingSelectRequest() +typedef int ImGuiWindowBgClickFlags; // -> enum ImGuiWindowBgClickFlags_ // Flags: for overriding behavior of clicking on window background/void. typedef int ImGuiWindowRefreshFlags; // -> enum ImGuiWindowRefreshFlags_ // Flags: for SetNextWindowRefreshPolicy() typedef ImU16 ImGuiTableDrawChannelIdx; @@ -368,10 +371,8 @@ typedef ImU16 ImGuiTableDrawChannelIdx; #define IM_F32_TO_INT8_SAT(_VAL) ((int)(ImSaturate(_VAL) * 255.0f + 0.5f)) // Saturated, always output 0..255 #define IM_TRUNC(_VAL) ((float)(int)(_VAL)) // ImTrunc() is not inlined in MSVC debug builds #define IM_ROUND(_VAL) ((float)(int)((_VAL) + 0.5f)) // -#define IM_STRINGIFY_HELPER(_X) #_X -#define IM_STRINGIFY(_X) IM_STRINGIFY_HELPER(_X) // Preprocessor idiom to stringify e.g. an integer. #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS -#define IM_FLOOR IM_TRUNC +#define IM_FLOOR IM_TRUNC // [OBSOLETE] Renamed in 1.90.0 (Sept 2023) #endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS // Hint for branch prediction #if (defined(__cplusplus)&&(__cplusplus >= 202002L))||(defined(_MSVC_LANG)&&(_MSVC_LANG >= 202002L)) @@ -430,6 +431,8 @@ typedef ImU16 ImGuiTableDrawChannelIdx; #define IM_PRIu64 "llu" #define IM_PRIX64 "llX" #endif // #if defined(_MSC_VER)&&!defined(__clang__) +#define IM_TEXTUREID_TO_U64(_TEXID) ((ImU64)(intptr_t)(_TEXID)) + //----------------------------------------------------------------------------- // [SECTION] Generic helpers // Note that the ImXXX helpers functions are lower-level than ImGui functions. @@ -458,10 +461,11 @@ typedef ImU16 ImGuiTableDrawChannelIdx; //----------------------------------------------------------------------------- // Helpers: Hashing -CIMGUI_API ImGuiID cImHashData(const void* data, size_t data_size); // Implied seed = 0 -CIMGUI_API ImGuiID cImHashDataEx(const void* data, size_t data_size, ImGuiID seed /* = 0 */); -CIMGUI_API ImGuiID cImHashStr(const char* data); // Implied data_size = 0, seed = 0 -CIMGUI_API ImGuiID cImHashStrEx(const char* data, size_t data_size /* = 0 */, ImGuiID seed /* = 0 */); +CIMGUI_API ImGuiID cImHashData(const void* data, size_t data_size); // Implied seed = 0 +CIMGUI_API ImGuiID cImHashDataEx(const void* data, size_t data_size, ImGuiID seed /* = 0 */); +CIMGUI_API ImGuiID cImHashStr(const char* data); // Implied data_size = 0, seed = 0 +CIMGUI_API ImGuiID cImHashStrEx(const char* data, size_t data_size /* = 0 */, ImGuiID seed /* = 0 */); +CIMGUI_API const char* cImHashSkipUncontributingPrefix(const char* label); // Helpers: Color Blending CIMGUI_API ImU32 cImAlphaBlendColors(ImU32 col_a, ImU32 col_b); @@ -508,16 +512,29 @@ CIMGUI_API const char* cImParseFormatSanitizeForScanning(const char* fmt_in, cha CIMGUI_API int cImParseFormatPrecision(const char* format, int default_value); // Helpers: UTF-8 <> wchar conversions -CIMGUI_API int cImTextCharToUtf8(char out_buf[5], unsigned int c); // return output UTF-8 bytes count -CIMGUI_API int cImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count -CIMGUI_API int cImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count -CIMGUI_API int cImTextStrFromUtf8(ImWchar* out_buf, int out_buf_size, const char* in_text, const char* in_text_end); // Implied in_remaining = NULL +CIMGUI_API int cImTextCharToUtf8(char out_buf[5], unsigned int c); // return output UTF-8 bytes count +CIMGUI_API int cImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count +CIMGUI_API int cImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count +CIMGUI_API int cImTextStrFromUtf8(ImWchar* out_buf, int out_buf_size, const char* in_text, const char* in_text_end); // Implied in_remaining = NULL CIMGUI_API int cImTextStrFromUtf8Ex(ImWchar* out_buf, int out_buf_size, const char* in_text, const char* in_text_end, const char** in_remaining /* = NULL */); // return input UTF-8 bytes count -CIMGUI_API int cImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count) -CIMGUI_API int cImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8 -CIMGUI_API int cImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8 -CIMGUI_API const char* cImTextFindPreviousUtf8Codepoint(const char* in_text_start, const char* in_text_curr); // return previous UTF-8 code-point. -CIMGUI_API int cImTextCountLines(const char* in_text, const char* in_text_end); // return number of lines taken by text. trailing carriage return doesn't count as an extra line. +CIMGUI_API int cImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count) +CIMGUI_API int cImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8 +CIMGUI_API int cImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8 +CIMGUI_API const char* cImTextFindPreviousUtf8Codepoint(const char* in_text_start, const char* in_p); // return previous UTF-8 code-point. +CIMGUI_API const char* cImTextFindValidUtf8CodepointEnd(const char* in_text_start, const char* in_text_end, const char* in_p); // return previous UTF-8 code-point if 'in_p' is not the end of a valid one. +CIMGUI_API int cImTextCountLines(const char* in_text, const char* in_text_end); // return number of lines taken by text. trailing carriage return doesn't count as an extra line. + +// Helpers: High-level text functions (DO NOT USE!!! THIS IS A MINIMAL SUBSET OF LARGER UPCOMING CHANGES) +typedef enum +{ + ImDrawTextFlags_None = 0, + ImDrawTextFlags_CpuFineClip = 1<<0, // Must be == 1/true for legacy with 'bool cpu_fine_clip' arg to RenderText() + ImDrawTextFlags_WrapKeepBlanks = 1<<1, + ImDrawTextFlags_StopOnNewLine = 1<<2, +} ImDrawTextFlags_; +CIMGUI_API ImVec2 cImFontCalcTextSizeEx(ImFont* font, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end_display, const char* text_end, const char** out_remaining, ImVec2* out_offset, ImDrawTextFlags flags); +CIMGUI_API const char* cImFontCalcWordWrapPositionEx(ImFont* font, float size, const char* text, const char* text_end, float wrap_width, ImDrawTextFlags flags /* = 0 */); +CIMGUI_API const char* cImTextCalcWordWrapNextLineStart(const char* text, const char* text_end, ImDrawTextFlags flags /* = 0 */); // trim trailing space and find beginning of next line // Helpers: File System #ifdef IMGUI_DISABLE_FILE_FUNCTIONS @@ -934,7 +951,7 @@ struct ImPool_ImGuiTable_t // Maintain a line index for a text buffer. This is a strong candidate to be moved into the public API. struct ImGuiTextIndex_t { - ImVector_int LineOffsets; + ImVector_int Offsets; int EndOffset /* = 0 */; // Because we don't own text buffer we need to maintain EndOffset (may bake in LineOffsets?) }; typedef struct ImGuiTextIndex_t ImGuiTextIndex; // Maintain a line index for a text buffer. @@ -1056,7 +1073,6 @@ typedef enum { // NB: need to be in sync with last value of ImGuiSelectableFlags_ ImGuiSelectableFlags_NoHoldingActiveID = 1<<20, - ImGuiSelectableFlags_SelectOnNav = 1<<21, // (WIP) Auto-select when moved into. This is not exposed in public API as to handle multi-select and modifiers we will need user to explicitly control focus scope. May be replaced with a BeginSelection() API. ImGuiSelectableFlags_SelectOnClick = 1<<22, // Override button behavior to react on Click (default is Click+Release) ImGuiSelectableFlags_SelectOnRelease = 1<<23, // Override button behavior to react on Release (default is Click+Release) ImGuiSelectableFlags_SpanAvailWidth = 1<<24, // Span all avail width even if we declared less for layout purpose. FIXME: We may be able to remove this (added in 6251d379, 2bcafc86 for menus) @@ -1162,6 +1178,7 @@ struct ImGuiGroupData_t ImVec2 BackupCurrLineSize; float BackupCurrLineTextBaseOffset; ImGuiID BackupActiveIdIsAlive; + bool BackupActiveIdHasBeenEditedThisFrame; bool BackupDeactivatedIdIsAlive; bool BackupHoveredIdIsAlive; bool BackupIsSameLine; @@ -1217,35 +1234,40 @@ struct ImGuiInputTextState_t ImVector_char CallbackTextBackup; // temporary storage for callback to support automatic reconcile of undo-stack int BufCapacity; // end-user buffer capacity (include zero terminator) ImVec2 Scroll; // horizontal offset (managed manually) + vertical scrolling (pulled from child window's own Scroll.y) + int LineCount; // last line count (solely for debugging) + float WrapWidth; // word-wrapping width float CursorAnim; // timer for cursor blink, reset on every user action so the cursor reappears immediately bool CursorFollow; // set when we want scrolling to follow the current cursor position (not always!) + bool CursorCenterY; // set when we want scrolling to be centered over the cursor position (while resizing a word-wrapping field) bool SelectedAllMouseLock; // after a double-click to select all, we ignore further mouse drags to update selection bool Edited; // edited this frame bool WantReloadUserBuf; // force a reload of user buf so it may be modified externally. may be automatic in future version. + ImS8 LastMoveDirectionLR; // ImGuiDir_Left or ImGuiDir_Right. track last movement direction so when cursor cross over a word-wrapping boundaries we can display it on either line depending on last move.s int ReloadSelectionStart; int ReloadSelectionEnd; }; -CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self, int key); // Cannot be inline because we call in code in stb_textedit.h implementation -CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self, unsigned int c); +CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self, int key); // Cannot be inline because we call in code in stb_textedit.h implementation +CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self, unsigned int c); +CIMGUI_API float ImGuiInputTextState_GetPreferredOffsetX(const ImGuiInputTextState* self); // Cursor & Selection -CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_CursorClamp(ImGuiInputTextState* self); -CIMGUI_API bool ImGuiInputTextState_HasSelection(const ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_ClearSelection(ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetCursorPos(const ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetSelectionStart(const ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(const ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_CursorClamp(ImGuiInputTextState* self); +CIMGUI_API bool ImGuiInputTextState_HasSelection(const ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ClearSelection(ImGuiInputTextState* self); +CIMGUI_API int ImGuiInputTextState_GetCursorPos(const ImGuiInputTextState* self); +CIMGUI_API int ImGuiInputTextState_GetSelectionStart(const ImGuiInputTextState* self); +CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(const ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self); // Reload user buf (WIP #2890) // If you modify underlying user-passed const char* while active you need to call this (InputText V2 may lift this) // strcpy(my_buf, "hello"); // if (ImGuiInputTextState* state = ImGui::GetInputTextState(id)) // id may be ImGui::GetItemID() is last item // state->ReloadUserBufAndSelectAll(); -CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self); -CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self); typedef enum { @@ -1256,6 +1278,12 @@ typedef enum // Refresh policy/frequency, Load Balancing etc. } ImGuiWindowRefreshFlags_; +typedef enum +{ + ImGuiWindowBgClickFlags_None = 0, + ImGuiWindowBgClickFlags_Move = 1<<0, // Click on bg/void + drag to move window. Cleared by default when using io.ConfigWindowsMoveFromTitleBarOnly. +} ImGuiWindowBgClickFlags_; + typedef enum { ImGuiNextWindowDataFlags_None = 0, @@ -1555,8 +1583,8 @@ struct ImGuiKeyRoutingData_t { ImGuiKeyRoutingIndex NextEntryIndex; ImU16 Mods; // Technically we'd only need 4-bits but for simplify we store ImGuiMod_ values which need 16-bits. - ImU8 RoutingCurrScore; // [DEBUG] For debug display - ImU8 RoutingNextScore; // Lower is better (0: perfect score) + ImU16 RoutingCurrScore; // [DEBUG] For debug display + ImU16 RoutingNextScore; // Lower is better (0: perfect score) ImGuiID RoutingCurr; ImGuiID RoutingNext; }; @@ -1660,8 +1688,9 @@ typedef enum ImGuiActivateFlags_PreferInput = 1<<0, // Favor activation that requires keyboard text input (e.g. for Slider/Drag). Default for Enter key. ImGuiActivateFlags_PreferTweak = 1<<1, // Favor activation for tweaking with arrows or gamepad (e.g. for Slider/Drag). Default for Space key and if keyboard is not used. ImGuiActivateFlags_TryToPreserveState = 1<<2, // Request widget to preserve state if it can (e.g. InputText will try to preserve cursor/selection) - ImGuiActivateFlags_FromTabbing = 1<<3, // Activation requested by a tabbing request + ImGuiActivateFlags_FromTabbing = 1<<3, // Activation requested by a tabbing request (ImGuiNavMoveFlags_IsTabbing) ImGuiActivateFlags_FromShortcut = 1<<4, // Activation requested by an item shortcut via SetNextItemShortcut() function. + ImGuiActivateFlags_FromFocusApi = 1<<5, // Activation requested by an api request (ImGuiNavMoveFlags_FocusApi) } ImGuiActivateFlags_; // Early work-in-progress API for ScrollToItem() @@ -1704,7 +1733,7 @@ typedef enum ImGuiNavMoveFlags_WrapMask_ = ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY, ImGuiNavMoveFlags_AllowCurrentNavId = 1<<4, // Allow scoring and considering the current NavId as a move target candidate. This is used when the move source is offset (e.g. pressing PageDown actually needs to send a Up move request, if we are pressing PageDown from the bottom-most item we need to stay in place) ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1<<5, // Store alternate result in NavMoveResultLocalVisible that only comprise elements that are already fully visible (used by PageUp/PageDown) - ImGuiNavMoveFlags_ScrollToEdgeY = 1<<6, // Force scrolling to min/max (used by Home/End) // FIXME-NAV: Aim to remove or reword, probably unnecessary + ImGuiNavMoveFlags_ScrollToEdgeY = 1<<6, // Force scrolling to min/max (used by Home/End) // FIXME-NAV: Aim to remove or reword as ImGuiScrollFlags ImGuiNavMoveFlags_Forwarded = 1<<7, ImGuiNavMoveFlags_DebugNoResult = 1<<8, // Dummy scoring for debug purpose, don't apply result ImGuiNavMoveFlags_FocusApi = 1<<9, // Requests from focus API can land/focus/activate items even if they are marked with _NoTabStop (see NavProcessItemForTabbingRequest() for details) @@ -2021,6 +2050,7 @@ typedef enum ImGuiWindowDockStyleCol_TabDimmed, ImGuiWindowDockStyleCol_TabDimmedSelected, ImGuiWindowDockStyleCol_TabDimmedSelectedOverline, + ImGuiWindowDockStyleCol_UnsavedMarker, ImGuiWindowDockStyleCol_COUNT, } ImGuiWindowDockStyleCol; @@ -2056,6 +2086,7 @@ struct ImGuiViewportP_t ImVec2 WorkSize; // Work Area: Size of the viewport minus task bars, menu bars, status bars (<= Size) float DpiScale; // 1.0f = 96 DPI = No extra scale. ImGuiID ParentViewportId; // (Advanced) 0: no parent. Instruct the platform backend to setup a parent/child relationship between platform windows. + ImGuiViewport* ParentViewport; // (Advanced) Direct shortcut to ImGui::FindViewportByID(ParentViewportId). NULL: no parent. ImDrawData* DrawData; // The ImDrawData corresponding to this viewport. Valid after Render() and until the next call to NewFrame(). // Platform/Backend Dependent Data // Our design separate the Renderer and Platform backends to facilitate combining default backends with each others. @@ -2253,23 +2284,31 @@ struct ImGuiMetricsConfig_t struct ImGuiStackLevelInfo_t { - ImGuiID ID; - ImS8 QueryFrameCount; // >= 1: Query in progress - bool QuerySuccess; // Obtained result from DebugHookIdInfo() - ImGuiDataType DataType : 8; - char Desc[57]; // Arbitrarily sized buffer to hold a result (FIXME: could replace Results[] with a chunk stream?) FIXME: Now that we added CTRL+C this should be fixed. + ImGuiID ID; + ImS8 QueryFrameCount; // >= 1: Sub-query in progress + bool QuerySuccess; // Sub-query obtained result from DebugHookIdInfo() + ImS8 DataType; // ImGuiDataType + int DescOffset; // -1 or offset into parent's ResultsPathsBuf +}; + +struct ImGuiDebugItemPathQuery_t +{ + ImGuiID MainID; // ID to query details for. + bool Active; // Used to disambiguate the case when ID == 0 and e.g. some code calls PushOverrideID(0). + bool Complete; // All sub-queries are finished (some may have failed). + ImS8 Step; // -1: query stack + init Results, >= 0: filling individual stack level. + ImVector_ImGuiStackLevelInfo Results; + ImGuiTextBuffer ResultsDescBuf; + ImGuiTextBuffer ResultPathBuf; }; // State for ID Stack tool queries struct ImGuiIDStackTool_t { - int LastActiveFrame; - int StackLevel; // -1: query stack and resize Results, >= 0: individual stack level - ImGuiID QueryId; // ID to query details for - ImVector_ImGuiStackLevelInfo Results; - bool CopyToClipboardOnCtrlC; - float CopyToClipboardLastTime; - ImGuiTextBuffer ResultPathBuf; + bool OptHexEncodeNonAsciiChars; + bool OptCopyToClipboardOnCtrlC; + int LastActiveFrame; + float CopyToClipboardLastTime; }; //----------------------------------------------------------------------------- @@ -2305,6 +2344,15 @@ struct ImGuiContextHook_t struct ImGuiContext_t { bool Initialized; + bool WithinFrameScope; // Set by NewFrame(), cleared by EndFrame() + bool WithinFrameScopeWithImplicitWindow; // Set by NewFrame(), cleared by EndFrame() when the implicit debug window has been pushed + bool TestEngineHookItems; // Will call test engine hooks: ImGuiTestEngineHook_ItemAdd(), ImGuiTestEngineHook_ItemInfo(), ImGuiTestEngineHook_Log() + int FrameCount; + int FrameCountEnded; + int FrameCountPlatformEnded; + int FrameCountRendered; + double Time; + char ContextName[16]; // Storage for a context name (to facilitate debugging multi-context setups) ImGuiIO IO; ImGuiPlatformIO PlatformIO; ImGuiStyle Style; @@ -2319,18 +2367,8 @@ struct ImGuiContext_t float FontRasterizerDensity; // Current font density. Used by all calls to GetFontBaked(). float CurrentDpiScale; // Current window/viewport DpiScale == CurrentViewport->DpiScale ImDrawListSharedData DrawListSharedData; - double Time; - int FrameCount; - int FrameCountEnded; - int FrameCountPlatformEnded; - int FrameCountRendered; ImGuiID WithinEndChildID; // Set within EndChild() - bool WithinFrameScope; // Set by NewFrame(), cleared by EndFrame() - bool WithinFrameScopeWithImplicitWindow; // Set by NewFrame(), cleared by EndFrame() when the implicit debug window has been pushed - bool GcCompactAll; // Request full GC - bool TestEngineHookItems; // Will call test engine hooks: ImGuiTestEngineHook_ItemAdd(), ImGuiTestEngineHook_ItemInfo(), ImGuiTestEngineHook_Log() void* TestEngine; // Test engine user data - char ContextName[16]; // Storage for a context name (to facilitate debugging multi-context setups) // Inputs ImVector_ImGuiInputEvent InputEventsQueue; // Input events which will be trickled/written into IO structure. @@ -2362,7 +2400,7 @@ struct ImGuiContext_t // Item/widgets state and tracking information ImGuiID DebugDrawIdConflictsId; // Set when we detect multiple items with the same identifier - ImGuiID DebugHookIdInfo; // Will call core hooks: DebugHookIdInfo() from GetID functions, used by ID Stack Tool [next HoveredId/ActiveId to not pull in an extra cache-line] + ImGuiID DebugHookIdInfoId; // Will call core hooks: DebugHookIdInfo() from GetID functions, used by ID Stack Tool [next HoveredId/ActiveId to not pull in an extra cache-line] ImGuiID HoveredId; // Hovered widget, filled during the frame ImGuiID HoveredIdPreviousFrame; int HoveredIdPreviousFrameItemCount; // Count numbers of items using the same ID as last frame's hovered id @@ -2381,11 +2419,11 @@ struct ImGuiContext_t bool ActiveIdHasBeenEditedBefore; // Was the value associated to the widget Edited over the course of the Active state. bool ActiveIdHasBeenEditedThisFrame; bool ActiveIdFromShortcut; + ImS8 ActiveIdMouseButton; ImGuiID ActiveIdDisabledId; // When clicking a disabled item we set ActiveId=window->MoveId to avoid interference with widget code. Actual item ID is stored here. - int ActiveIdMouseButton : 8; ImVec2 ActiveIdClickOffset; // Clicked offset from upper-left corner, if applicable (currently only set by ButtonBehavior) - ImGuiWindow* ActiveIdWindow; ImGuiInputSource ActiveIdSource; // Activating source: ImGuiInputSource_Mouse OR ImGuiInputSource_Keyboard OR ImGuiInputSource_Gamepad + ImGuiWindow* ActiveIdWindow; ImGuiID ActiveIdPreviousFrame; ImGuiDeactivatedItemData DeactivatedItemData; ImGuiDataTypeStorage ActiveIdValueOnActivation; // Backup of initial value at the time of activation. ONLY SET BY SPECIFIC WIDGETS: DragXXX and SliderXXX. @@ -2415,6 +2453,7 @@ struct ImGuiContext_t ImGuiLastItemData LastItemData; // Storage for last submitted item (setup by ItemAdd) ImGuiNextWindowData NextWindowData; // Storage for SetNextWindow** functions bool DebugShowGroupRects; + bool GcCompactAll; // Request full GC // Shared stacks ImGuiCol DebugFlashStyleColorIdx; // (Keep close to ColorStack to share cache line) @@ -2460,7 +2499,7 @@ struct ImGuiContext_t float NavHighlightActivatedTimer; ImGuiID NavNextActivateId; // Set by ActivateItemByID(), queued until next frame. ImGuiActivateFlags NavNextActivateFlags; - ImGuiInputSource NavInputSource; // Keyboard or Gamepad mode? THIS CAN ONLY BE ImGuiInputSource_Keyboard or ImGuiInputSource_Mouse + ImGuiInputSource NavInputSource; // Keyboard or Gamepad mode? THIS CAN ONLY BE ImGuiInputSource_Keyboard or ImGuiInputSource_Gamepad ImGuiSelectionUserData NavLastValidSelectionUserData; // Last valid data passed to SetNextItemSelectionUser(), or -1. For current window. Not reset when focusing an item that doesn't have selection data. ImS8 NavCursorHideFrames; //ImGuiID NavActivateInputId; // Removed in 1.89.4 (July 2023). This is now part of g.NavActivateId and sets g.NavActivateFlags |= ImGuiActivateFlags_PreferInput. See commit c9a53aa74, issue #5606. @@ -2497,13 +2536,13 @@ struct ImGuiContext_t bool NavJustMovedToIsTabbing; // Copy of ImGuiNavMoveFlags_IsTabbing. Maybe we should store whole flags. bool NavJustMovedToHasSelectionData; // Copy of move result's ItemFlags & ImGuiItemFlags_HasSelectionUserData). Maybe we should just store ImGuiNavItemData. - // Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize) - bool ConfigNavWindowingWithGamepad; // = true. Enable CTRL+TAB by holding ImGuiKey_GamepadFaceLeft (== ImGuiKey_NavGamepadMenu). When false, the button may still be used to toggle Menu layer. + // Navigation: Windowing (Ctrl+Tab for list, or Menu button + keys or directional pads to move/resize) + bool ConfigNavWindowingWithGamepad; // = true. Enable Ctrl+Tab by holding ImGuiKey_GamepadFaceLeft (== ImGuiKey_NavGamepadMenu). When false, the button may still be used to toggle Menu layer. ImGuiKeyChord ConfigNavWindowingKeyNext; // = ImGuiMod_Ctrl | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiKey_Tab on OS X). For reconfiguration (see #4828) ImGuiKeyChord ConfigNavWindowingKeyPrev; // = ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab on OS X) - ImGuiWindow* NavWindowingTarget; // Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most! + ImGuiWindow* NavWindowingTarget; // Target window when doing Ctrl+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most! ImGuiWindow* NavWindowingTargetAnim; // Record of last valid NavWindowingTarget until DimBgRatio and NavWindowingHighlightAlpha becomes 0.0f, so the fade-out can stay on it. - ImGuiWindow* NavWindowingListWindow; // Internal window actually listing the CTRL+Tab contents + ImGuiWindow* NavWindowingListWindow; // Internal window actually listing the Ctrl+Tab contents float NavWindowingTimer; float NavWindowingHighlightAlpha; ImGuiInputSource NavWindowingInputSource; @@ -2513,7 +2552,7 @@ struct ImGuiContext_t ImVec2 NavWindowingAccumDeltaSize; // Render - float DimBgRatio; // 0.0..1.0 animation when fading in a dimming background (for modal window and CTRL+TAB list) + float DimBgRatio; // 0.0..1.0 animation when fading in a dimming background (for modal window and Ctrl+Tab list) // Drag and Drop bool DragDropActive; @@ -2526,7 +2565,9 @@ struct ImGuiContext_t ImRect DragDropTargetRect; // Store rectangle of current target candidate (we favor small targets when overlapping) ImRect DragDropTargetClipRect; // Store ClipRect at the time of item's drawing ImGuiID DragDropTargetId; - ImGuiDragDropFlags DragDropAcceptFlags; + ImGuiID DragDropTargetFullViewport; + ImGuiDragDropFlags DragDropAcceptFlagsCurr; + ImGuiDragDropFlags DragDropAcceptFlagsPrev; float DragDropAcceptIdCurrRectSurface; // Target item surface (we resolve overlapping targets by prioritizing the smaller surface) ImGuiID DragDropAcceptIdCurr; // Target item id (set at the time of accepting the payload) ImGuiID DragDropAcceptIdPrev; // Target item id from previous frame (we need to store this to allow for overlapping drag and drop targets) @@ -2576,10 +2617,11 @@ struct ImGuiContext_t // Widget state ImGuiInputTextState InputTextState; + ImGuiTextIndex InputTextLineIndex; // Temporary storage ImGuiInputTextDeactivatedState InputTextDeactivatedState; ImFontBaked InputTextPasswordFontBackupBaked; ImFontFlags InputTextPasswordFontBackupFlags; - ImGuiID TempInputId; // Temporary text input when CTRL+clicking on a slider, etc. + ImGuiID TempInputId; // Temporary text input when using Ctrl+Click on a slider, etc. ImGuiDataTypeStorage DataTypeZeroValue; // 0 for all data types int BeginMenuDepth; int BeginComboDepth; @@ -2634,14 +2676,14 @@ struct ImGuiContext_t // Capture/Logging bool LogEnabled; // Currently capturing + bool LogLineFirstItem; ImGuiLogFlags LogFlags; // Capture flags/type ImGuiWindow* LogWindow; ImFileHandle LogFile; // If != NULL log to stdout/ file ImGuiTextBuffer LogBuffer; // Accumulation buffer when log to clipboard. This is pointer so our GImGui static constructor doesn't call heap allocators. - const char* LogNextPrefix; + const char* LogNextPrefix; // See comment in LogSetNextTextDecoration(): doesn't copy underlying data, use carefully! const char* LogNextSuffix; float LogLinePosY; - bool LogLineFirstItem; int LogDepthRef; int LogDepthToExpand; int LogDepthToExpandDefault; // Default/stored value for LogDepthMaxExpand if not specified in the LogXXX function call. @@ -2657,7 +2699,7 @@ struct ImGuiContext_t // Debug Tools // (some of the highly frequently used data are interleaved in other structures above: DebugBreakXXX fields, DebugHookIdInfo, DebugLocateId etc.) - int DebugDrawIdConflictsCount; // Locked count (preserved when holding CTRL) + int DebugDrawIdConflictsCount; // Locked count (preserved when holding Ctrl) ImGuiDebugLogFlags DebugLogFlags; ImGuiTextBuffer DebugLogBuf; ImGuiTextIndex DebugLogIndex; @@ -2674,6 +2716,7 @@ struct ImGuiContext_t float DebugFlashStyleColorTime; ImVec4 DebugFlashStyleColorBackup; ImGuiMetricsConfig DebugMetricsConfig; + ImGuiDebugItemPathQuery DebugItemPathQuery; ImGuiIDStackTool DebugIDStackTool; ImGuiDebugAllocInfo DebugAllocInfo; ImGuiDockNode* DebugHoveredDockNode; // Hovered dock node. @@ -2816,13 +2859,14 @@ struct ImGuiWindow_t short BeginOrderWithinParent; // Begin() order within immediate parent window, if we are a child window. Otherwise 0. short BeginOrderWithinContext; // Begin() order within entire imgui context. This is mostly used for debugging submission order related issues. short FocusOrder; // Order within WindowsFocusOrder[], altered when windows are focused. + ImGuiDir AutoPosLastDirection; ImS8 AutoFitFramesX, AutoFitFramesY; bool AutoFitOnlyGrows; - ImGuiDir AutoPosLastDirection; ImS8 HiddenFramesCanSkipItems; // Hide the window for N frames ImS8 HiddenFramesCannotSkipItems; // Hide the window for N frames while allowing items to be submitted so we can measure their size ImS8 HiddenFramesForRenderOnly; // Hide the window until frame N at Render() time only ImS8 DisableInputsFrames; // Disable window interactions for N frames + ImGuiWindowBgClickFlags BgClickFlags : 8; // Configure behavior of click+dragging on window bg/void or over items. Default sets by io.ConfigWindowsMoveFromTitleBarOnly. If you use this please report in #3379. ImGuiCond SetWindowPosAllowFlags : 8; // store acceptable condition flags for SetNextWindowPos() use. ImGuiCond SetWindowSizeAllowFlags : 8; // store acceptable condition flags for SetNextWindowSize() use. ImGuiCond SetWindowCollapsedAllowFlags : 8; // store acceptable condition flags for SetNextWindowCollapsed() use. @@ -2865,7 +2909,7 @@ struct ImGuiWindow_t ImGuiWindow* RootWindowDockTree; // Point to ourself or first ancestor that is not a child window. Cross through dock nodes. ImGuiWindow* RootWindowForTitleBarHighlight; // Point to ourself or first ancestor which will display TitleBgActive color when this window is active. ImGuiWindow* RootWindowForNav; // Point to ourself or first ancestor which doesn't have the NavFlattened flag. - ImGuiWindow* ParentWindowForFocusRoute; // Set to manual link a window to its logical parent so that Shortcut() chain are honoerd (e.g. Tool linked to Document) + ImGuiWindow* ParentWindowForFocusRoute; // Set to manual link a window to its logical parent so that Shortcut() chain are honored (e.g. Tool linked to Document) ImGuiWindow* NavLastChildNavWindow; // When going to the menu bar, we remember the child window we came from. (This could probably be made implicit if we kept g.Windows sorted by last focused including child window.) ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; // Last known NavId for this window, per layer (0/1) @@ -2888,7 +2932,7 @@ struct ImGuiWindow_t ImGuiDockNode* DockNodeAsHost; // Which node are we owning (for parent windows) ImGuiID DockId; // Backup of last valid DockNode->ID, so single window remember their dock node id even when they are not bound any more - // [Obsolete] ImGuiWindow::CalcFontSize() was removed in 1.92.x because error-prone/misleading. You can use window->FontRefSize for a copy of g.FontSize at the time of the last Begin() call for this window. + // [OBSOLETE] ImGuiWindow::CalcFontSize() was removed in 1.92.0 because error-prone/misleading. You can use window->FontRefSize for a copy of g.FontSize at the time of the last Begin() call for this window. //float CalcFontSize() const { ImGuiContext& g = *Ctx; return g.FontSizeBase * FontWindowScale * FontDpiScale * FontWindowScaleParents; }; CIMGUI_API ImGuiID ImGuiWindow_GetIDStr(ImGuiWindow* self, const char* str); // Implied str_end = NULL @@ -2951,7 +2995,7 @@ struct ImGuiTabBar_t ImGuiID ID; // Zero for tab-bars used by docking ImGuiID SelectedTabId; // Selected tab/window ImGuiID NextSelectedTabId; // Next selected tab/window. Will also trigger a scrolling animation - ImGuiID VisibleTabId; // Can occasionally be != SelectedTabId (e.g. when previewing contents for CTRL+TAB preview) + ImGuiID VisibleTabId; // Can occasionally be != SelectedTabId (e.g. when previewing contents for Ctrl+Tab preview) int CurrFrameVisible; int PrevFrameVisible; ImRect BarRect; @@ -3175,7 +3219,7 @@ struct ImGuiTable_t bool IsContextPopupOpen; // Set when default context menu is open (also see: ContextPopupColumn, InstanceInteracted). bool DisableDefaultContextMenu; // Disable default context menu. You may submit your own using TableBeginContextMenuPopup()/EndPopup() bool IsSettingsRequestLoad; - bool IsSettingsDirty; // Set when table settings have changed and needs to be reported into ImGuiTableSetttings data. + bool IsSettingsDirty; // Set when table settings have changed and needs to be reported into ImGuiTableSettings data. bool IsDefaultDisplayOrder; // Set when display order is unchanged from default (DisplayOrder contains 0...Count-1) bool IsResetAllRequest; bool IsResetDisplayOrderRequest; @@ -3196,6 +3240,7 @@ struct ImGuiTable_t // sizeof() ~ 136 bytes. struct ImGuiTableTempData_t { + ImGuiID WindowID; // Shortcut to g.Tables[TableIndex]->OuterWindow->ID. int TableIndex; // Index in g.Tables.Buf[] pool float LastTimeActive; // Last timestamp this structure was used float AngledHeadersExtraWidth; // Used in EndTable() @@ -3259,6 +3304,7 @@ CIMGUI_API void ImGui_UpdateWindowParentAndRootLinks(ImGuiWindow* wi CIMGUI_API void ImGui_UpdateWindowSkipRefresh(ImGuiWindow* window); CIMGUI_API ImVec2 ImGui_CalcWindowNextAutoFitSize(ImGuiWindow* window); CIMGUI_API bool ImGui_IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent, bool popup_hierarchy, bool dock_hierarchy); +CIMGUI_API bool ImGui_IsWindowInBeginStack(ImGuiWindow* window); CIMGUI_API bool ImGui_IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent); CIMGUI_API bool ImGui_IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below); CIMGUI_API bool ImGui_IsWindowNavFocusable(ImGuiWindow* window); @@ -3393,6 +3439,7 @@ CIMGUI_API ImVec2 ImGui_CalcItemSize(ImVec2 size, float default_w, float default CIMGUI_API float ImGui_CalcWrapWidthForPos(ImVec2 pos, float wrap_pos_x); CIMGUI_API void ImGui_PushMultiItemsWidths(int components, float width_full); CIMGUI_API void ImGui_ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess, float width_min); +CIMGUI_API void ImGui_CalcClipRectVisibleItemsY(ImRect clip_rect, ImVec2 pos, float items_height, int* out_visible_start, int* out_visible_end); // Parameter stacks (shared) CIMGUI_API const ImGuiStyleVarInfo* ImGui_GetStyleVarInfo(ImGuiStyleVar idx); @@ -3520,7 +3567,7 @@ CIMGUI_API ImGuiKeyOwnerData* ImGui_GetKeyOwnerData(ImGuiContext* ctx, ImGuiKey // - Binding generators may want to ignore those for now, or suffix them with Ex() until we decide if this gets moved into public API. CIMGUI_API bool ImGui_IsKeyDownID(ImGuiKey key, ImGuiID owner_id); CIMGUI_API bool ImGui_IsKeyPressedImGuiInputFlags(ImGuiKey key, ImGuiInputFlags flags); // Implied owner_id = 0 -CIMGUI_API bool ImGui_IsKeyPressedImGuiInputFlagsEx(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id /* = 0 */); // Important: when transitioning from old to new IsKeyPressed(): old API has "bool repeat = true", so would default to repeat. New API requiress explicit ImGuiInputFlags_Repeat. +CIMGUI_API bool ImGui_IsKeyPressedImGuiInputFlagsEx(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id /* = 0 */); // Important: when transitioning from old to new IsKeyPressed(): old API has "bool repeat = true", so would default to repeat. New API requires explicit ImGuiInputFlags_Repeat. CIMGUI_API bool ImGui_IsKeyReleasedID(ImGuiKey key, ImGuiID owner_id); CIMGUI_API bool ImGui_IsKeyChordPressedImGuiInputFlags(ImGuiKeyChord key_chord, ImGuiInputFlags flags); // Implied owner_id = 0 CIMGUI_API bool ImGui_IsKeyChordPressedImGuiInputFlagsEx(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id /* = 0 */); @@ -3622,9 +3669,12 @@ CIMGUI_API ImGuiID ImGui_GetCurrentFocusScope(void); // Focus scope we are outp // Drag and Drop CIMGUI_API bool ImGui_IsDragDropActive(void); CIMGUI_API bool ImGui_BeginDragDropTargetCustom(ImRect bb, ImGuiID id); +CIMGUI_API bool ImGui_BeginDragDropTargetViewport(ImGuiViewport* viewport); // Implied p_bb = NULL +CIMGUI_API bool ImGui_BeginDragDropTargetViewportEx(ImGuiViewport* viewport, const ImRect* p_bb /* = NULL */); CIMGUI_API void ImGui_ClearDragDrop(void); CIMGUI_API bool ImGui_IsDragDropPayloadBeingAccepted(void); -CIMGUI_API void ImGui_RenderDragDropTargetRect(ImRect bb, ImRect item_clip_rect); +CIMGUI_API void ImGui_RenderDragDropTargetRectForItem(ImRect bb); +CIMGUI_API void ImGui_RenderDragDropTargetRectEx(ImDrawList* draw_list, ImRect bb); // Typing-Select API // (provide Windows Explorer style "select items by typing partial name" + "cycle through items by typing same letter" feature) @@ -3722,6 +3772,8 @@ CIMGUI_API ImGuiTableSettings* ImGui_TableSettingsFindByID(ImGuiID id); // Tab Bars CIMGUI_API ImGuiTabBar* ImGui_GetCurrentTabBar(void); +CIMGUI_API ImGuiTabBar* ImGui_TabBarFindByID(ImGuiID id); +CIMGUI_API void ImGui_TabBarRemove(ImGuiTabBar* tab_bar); CIMGUI_API bool ImGui_BeginTabBarEx(ImGuiTabBar* tab_bar, ImRect bb, ImGuiTabBarFlags flags); CIMGUI_API ImGuiTabItem* ImGui_TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id); CIMGUI_API ImGuiTabItem* ImGui_TabBarFindTabByOrder(ImGuiTabBar* tab_bar, int order); @@ -3955,11 +4007,11 @@ typedef ImFontLoader ImFontBuilderIO; // [renamed/changed in 1.92] The types ar #define IMGUI_FONT_SIZE_THRESHOLD_FOR_LOADADVANCEXONLYMODE (128.0f) // Refer to ImFontAtlasPackGetRect() to better understand how this works. -#define ImFontAtlasRectId_IndexMask_ (0x000FFFFF) // 20-bits: index to access builder->RectsIndex[]. +#define ImFontAtlasRectId_IndexMask_ (0x0007FFFF) // 20-bits signed: index to access builder->RectsIndex[]. #define ImFontAtlasRectId_GenerationMask_ (0x3FF00000) // 10-bits: entry generation, so each ID is unique and get can safely detected old identifiers. #define ImFontAtlasRectId_GenerationShift_ (20) CIMGUI_API int cImFontAtlasRectId_GetIndex(ImFontAtlasRectId id); -CIMGUI_API int cImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id); +CIMGUI_API unsigned int cImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id); CIMGUI_API ImFontAtlasRectId cImFontAtlasRectId_Make(int index_idx, int gen_idx); // Packed rectangle lookup entry (we need an indirection to allow removing/reordering rectangles) @@ -3970,7 +4022,7 @@ CIMGUI_API ImFontAtlasRectId cImFontAtlasRectId_Make(int index_idx, int gen_idx) struct ImFontAtlasRectEntry_t { int TargetIndex : 20; // When Used: ImFontAtlasRectId -> into Rects[]. When unused: index to next unused RectsIndex[] slot to consume free-list. - int Generation : 10; // Increased each time the entry is reused for a new rectangle. + unsigned int Generation : 10; // Increased each time the entry is reused for a new rectangle. unsigned int IsUsed : 1; }; struct ImVector_ImFontAtlasRectEntry_t { int Size; int Capacity; ImFontAtlasRectEntry* Data; }; // Instantiation of ImVector @@ -4039,6 +4091,7 @@ CIMGUI_API void cImFontAtlasBuildInit(ImFontAtlas* atlas); CIMGUI_API void cImFontAtlasBuildDestroy(ImFontAtlas* atlas); CIMGUI_API void cImFontAtlasBuildMain(ImFontAtlas* atlas); CIMGUI_API void cImFontAtlasBuildSetupFontLoader(ImFontAtlas* atlas, const ImFontLoader* font_loader); +CIMGUI_API void cImFontAtlasBuildNotifySetFont(ImFontAtlas* atlas, ImFont* old_font, ImFont* new_font); CIMGUI_API void cImFontAtlasBuildUpdatePointers(ImFontAtlas* atlas); CIMGUI_API void cImFontAtlasBuildRenderBitmapFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char); CIMGUI_API void cImFontAtlasBuildClear(ImFontAtlas* atlas); // Clear output and custom rects @@ -4121,7 +4174,7 @@ CIMGUI_API const char* cImGuiTestEngine_FindItemDebugLabel(ImGuiContext* ctx, Im #define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemInfo(&g, _ID, _LABEL, _FLAGS) // Register item label and status flags (optional) #define IMGUI_TEST_ENGINE_LOG(_FMT,...) ImGuiTestEngineHook_Log(&g, _FMT, __VA_ARGS__) // Custom log entry from user land into test log #else -#define IMGUI_TEST_ENGINE_ITEM_ADD(_BB,_ID) ((void)0) +#define IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA) ((void)0) #define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) ((void)g) #endif // #ifdef IMGUI_ENABLE_TEST_ENGINE //----------------------------------------------------------------------------- diff --git a/src/cached/dcimgui_internal.json b/src/cached/dcimgui_internal.json index 908c6ef..b85d5cd 100644 --- a/src/cached/dcimgui_internal.json +++ b/src/cached/dcimgui_internal.json @@ -69,7 +69,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 237 + "line": 239 } }, { @@ -78,7 +78,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 276 + "line": 278 } }, { @@ -96,7 +96,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 278 + "line": 280 } }, { @@ -111,7 +111,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 280 + "line": 282 } }, { @@ -126,12 +126,15 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 283 + "line": 285 } }, { "name": "IM_FLOOR", "content": "IM_TRUNC", + "comments": { + "attached": "// [OBSOLETE] Renamed in 1.90.0 (Sept 2023)" + }, "conditionals": [ { "condition": "ifndef", @@ -327,7 +330,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 396 + "line": 398 } }, { @@ -336,7 +339,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 397 + "line": 399 } }, { @@ -350,7 +353,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 443 + "line": 458 } }, { @@ -367,7 +370,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 459 + "line": 474 } }, { @@ -376,7 +379,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 830 + "line": 846 } }, { @@ -385,7 +388,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 831 + "line": 847 } }, { @@ -403,7 +406,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 840 + "line": 856 } }, { @@ -415,7 +418,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 842 + "line": 858 } }, { @@ -424,7 +427,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1209 + "line": 1225 } }, { @@ -433,7 +436,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1210 + "line": 1226 } }, { @@ -442,7 +445,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1211 + "line": 1227 } }, { @@ -451,7 +454,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1212 + "line": 1228 } }, { @@ -460,7 +463,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1213 + "line": 1229 } }, { @@ -469,7 +472,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1476 + "line": 1503 } }, { @@ -478,7 +481,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1477 + "line": 1504 } }, { @@ -487,7 +490,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1478 + "line": 1505 } }, { @@ -496,7 +499,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1479 + "line": 1506 } }, { @@ -505,7 +508,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1480 + "line": 1507 } }, { @@ -514,7 +517,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1481 + "line": 1508 } }, { @@ -523,7 +526,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1482 + "line": 1509 } }, { @@ -532,7 +535,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1483 + "line": 1510 } }, { @@ -541,7 +544,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1484 + "line": 1511 } }, { @@ -550,7 +553,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1485 + "line": 1512 } }, { @@ -559,7 +562,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1488 + "line": 1515 } }, { @@ -568,7 +571,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1489 + "line": 1516 } }, { @@ -577,7 +580,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1490 + "line": 1517 } }, { @@ -586,7 +589,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1491 + "line": 1518 } }, { @@ -595,7 +598,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1492 + "line": 1519 } }, { @@ -604,7 +607,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1493 + "line": 1520 } }, { @@ -613,7 +616,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1494 + "line": 1521 } }, { @@ -622,7 +625,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1495 + "line": 1522 } }, { @@ -634,7 +637,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1550 + "line": 1577 } }, { @@ -646,7 +649,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1551 + "line": 1578 } }, { @@ -655,7 +658,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1888 + "line": 1916 } }, { @@ -667,7 +670,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1934 + "line": 1962 } }, { @@ -679,7 +682,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1935 + "line": 1963 } }, { @@ -691,7 +694,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3029 + "line": 3074 } }, { @@ -703,7 +706,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3030 + "line": 3075 } }, { @@ -712,7 +715,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4024 + "line": 4076 } }, { @@ -721,19 +724,19 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4025 + "line": 4077 } }, { "name": "ImFontAtlasRectId_IndexMask_", - "content": "0x000FFFFF", + "content": "0x0007FFFF", "comments": { - "attached": "// 20-bits: index to access builder->RectsIndex[]." + "attached": "// 20-bits signed: index to access builder->RectsIndex[]." }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4033 + "line": 4085 } }, { @@ -745,7 +748,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4034 + "line": 4086 } }, { @@ -754,11 +757,75 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4035 + "line": 4087 } } ], "enums": [ + { + "name": "ImDrawTextFlags_", + "original_fully_qualified_name": "ImDrawTextFlags_", + "is_flags_enum": true, + "elements": [ + { + "name": "ImDrawTextFlags_None", + "value_expression": "0", + "value": 0, + "is_count": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 447 + } + }, + { + "name": "ImDrawTextFlags_CpuFineClip", + "value_expression": "1<<0", + "value": 1, + "is_count": false, + "comments": { + "attached": "// Must be == 1/true for legacy with 'bool cpu_fine_clip' arg to RenderText()" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 448 + } + }, + { + "name": "ImDrawTextFlags_WrapKeepBlanks", + "value_expression": "1<<1", + "value": 2, + "is_count": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 449 + } + }, + { + "name": "ImDrawTextFlags_StopOnNewLine", + "value_expression": "1<<2", + "value": 4, + "is_count": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 450 + } + } + ], + "comments": { + "preceding": [ + "// Helpers: High-level text functions (DO NOT USE!!! THIS IS A MINIMAL SUBSET OF LARGER UPCOMING CHANGES)" + ] + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 445 + } + }, { "name": "ImGuiDataTypePrivate_", "original_fully_qualified_name": "ImGuiDataTypePrivate_", @@ -772,7 +839,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 940 + "line": 956 } }, { @@ -782,7 +849,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 941 + "line": 957 } } ], @@ -794,7 +861,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 938 + "line": 954 } }, { @@ -816,7 +883,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 954 + "line": 970 } }, { @@ -830,7 +897,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 955 + "line": 971 } }, { @@ -844,7 +911,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 956 + "line": 972 } }, { @@ -858,7 +925,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 957 + "line": 973 } }, { @@ -872,7 +939,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 958 + "line": 974 } }, { @@ -886,7 +953,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 959 + "line": 975 } }, { @@ -900,7 +967,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 960 + "line": 976 } }, { @@ -914,7 +981,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 961 + "line": 977 } }, { @@ -931,7 +998,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 964 + "line": 980 } }, { @@ -945,7 +1012,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 965 + "line": 981 } }, { @@ -959,7 +1026,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 966 + "line": 982 } }, { @@ -973,7 +1040,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 968 + "line": 984 } } ], @@ -987,7 +1054,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 951 + "line": 967 } }, { @@ -1003,7 +1070,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 978 + "line": 994 } }, { @@ -1017,7 +1084,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 979 + "line": 995 } }, { @@ -1031,7 +1098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 980 + "line": 996 } }, { @@ -1045,7 +1112,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 981 + "line": 997 } }, { @@ -1059,7 +1126,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 982 + "line": 998 } }, { @@ -1073,7 +1140,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 983 + "line": 999 } }, { @@ -1087,7 +1154,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 984 + "line": 1000 } }, { @@ -1101,7 +1168,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 985 + "line": 1001 } }, { @@ -1115,7 +1182,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 986 + "line": 1002 } }, { @@ -1129,7 +1196,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 987 + "line": 1003 } }, { @@ -1143,7 +1210,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 988 + "line": 1004 } }, { @@ -1157,7 +1224,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 989 + "line": 1005 } }, { @@ -1177,7 +1244,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 994 + "line": 1010 } }, { @@ -1197,7 +1264,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 995 + "line": 1011 } }, { @@ -1217,7 +1284,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 996 + "line": 1012 } }, { @@ -1237,7 +1304,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 997 + "line": 1013 } }, { @@ -1257,7 +1324,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 998 + "line": 1014 } } ], @@ -1270,7 +1337,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 976 + "line": 992 } }, { @@ -1286,7 +1353,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1005 + "line": 1021 } }, { @@ -1297,7 +1364,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1006 + "line": 1022 } }, { @@ -1308,7 +1375,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1007 + "line": 1023 } } ], @@ -1320,7 +1387,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1003 + "line": 1019 } }, { @@ -1342,7 +1409,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1014 + "line": 1030 } }, { @@ -1356,7 +1423,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1015 + "line": 1031 } }, { @@ -1370,7 +1437,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1016 + "line": 1032 } } ], @@ -1382,7 +1449,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1011 + "line": 1027 } }, { @@ -1401,7 +1468,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1022 + "line": 1038 } }, { @@ -1415,7 +1482,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1023 + "line": 1039 } }, { @@ -1429,7 +1496,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1024 + "line": 1040 } }, { @@ -1443,7 +1510,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1025 + "line": 1041 } }, { @@ -1457,7 +1524,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1026 + "line": 1042 } }, { @@ -1471,7 +1538,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1027 + "line": 1043 } }, { @@ -1488,7 +1555,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1029 + "line": 1045 } }, { @@ -1502,7 +1569,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1030 + "line": 1046 } }, { @@ -1520,7 +1587,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1033 + "line": 1049 } }, { @@ -1534,7 +1601,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1034 + "line": 1050 } }, { @@ -1548,7 +1615,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1035 + "line": 1051 } }, { @@ -1562,7 +1629,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1036 + "line": 1052 } }, { @@ -1576,7 +1643,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1037 + "line": 1053 } }, { @@ -1590,7 +1657,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1038 + "line": 1054 } }, { @@ -1604,7 +1671,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1039 + "line": 1055 } }, { @@ -1618,7 +1685,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1040 + "line": 1056 } }, { @@ -1629,7 +1696,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1041 + "line": 1057 } }, { @@ -1640,7 +1707,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1042 + "line": 1058 } } ], @@ -1652,7 +1719,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1020 + "line": 1036 } }, { @@ -1671,7 +1738,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1049 + "line": 1065 } } ], @@ -1683,7 +1750,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1047 + "line": 1063 } }, { @@ -1702,7 +1769,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1055 + "line": 1071 } }, { @@ -1716,7 +1783,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1056 + "line": 1072 } } ], @@ -1728,7 +1795,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1053 + "line": 1069 } }, { @@ -1749,21 +1816,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1063 - } - }, - { - "name": "ImGuiSelectableFlags_SelectOnNav", - "value_expression": "1<<21", - "value": 2097152, - "is_count": false, - "comments": { - "attached": "// (WIP) Auto-select when moved into. This is not exposed in public API as to handle multi-select and modifiers we will need user to explicitly control focus scope. May be replaced with a BeginSelection() API." - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 1064 + "line": 1079 } }, { @@ -1777,7 +1830,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1065 + "line": 1080 } }, { @@ -1791,7 +1844,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1066 + "line": 1081 } }, { @@ -1805,7 +1858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1067 + "line": 1082 } }, { @@ -1819,7 +1872,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1068 + "line": 1083 } }, { @@ -1833,7 +1886,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1069 + "line": 1084 } }, { @@ -1847,7 +1900,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1070 + "line": 1085 } } ], @@ -1859,7 +1912,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1060 + "line": 1076 } }, { @@ -1878,7 +1931,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1076 + "line": 1091 } }, { @@ -1892,7 +1945,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1077 + "line": 1092 } }, { @@ -1906,7 +1959,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1078 + "line": 1093 } }, { @@ -1917,7 +1970,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1079 + "line": 1094 } }, { @@ -1928,7 +1981,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1080 + "line": 1095 } } ], @@ -1940,7 +1993,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1074 + "line": 1089 } }, { @@ -1956,7 +2009,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1085 + "line": 1100 } }, { @@ -1970,7 +2023,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1086 + "line": 1101 } }, { @@ -1981,7 +2034,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1087 + "line": 1102 } }, { @@ -1995,14 +2048,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1088 + "line": 1103 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1083 + "line": 1098 } }, { @@ -2018,7 +2071,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1096 + "line": 1111 } }, { @@ -2032,7 +2085,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1097 + "line": 1112 } }, { @@ -2046,7 +2099,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1098 + "line": 1113 } } ], @@ -2060,7 +2113,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1094 + "line": 1109 } }, { @@ -2076,7 +2129,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1103 + "line": 1118 } }, { @@ -2087,14 +2140,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1104 + "line": 1119 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1101 + "line": 1116 } }, { @@ -2110,7 +2163,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1109 + "line": 1124 } }, { @@ -2124,14 +2177,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1110 + "line": 1125 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1107 + "line": 1122 } }, { @@ -2147,7 +2200,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1117 + "line": 1132 } }, { @@ -2158,7 +2211,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1118 + "line": 1133 } } ], @@ -2171,7 +2224,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1115 + "line": 1130 } }, { @@ -2187,7 +2240,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1124 + "line": 1139 } }, { @@ -2198,7 +2251,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1126 + "line": 1141 } }, { @@ -2209,7 +2262,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1127 + "line": 1142 } }, { @@ -2220,7 +2273,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1128 + "line": 1143 } }, { @@ -2231,7 +2284,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1129 + "line": 1144 } }, { @@ -2242,7 +2295,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1130 + "line": 1145 } } ], @@ -2254,7 +2307,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1122 + "line": 1137 } }, { @@ -2270,7 +2323,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1136 + "line": 1151 } }, { @@ -2281,7 +2334,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1137 + "line": 1152 } }, { @@ -2292,7 +2345,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1138 + "line": 1153 } } ], @@ -2304,7 +2357,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1134 + "line": 1149 } }, { @@ -2319,7 +2372,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1143 + "line": 1158 } }, { @@ -2329,14 +2382,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1144 + "line": 1159 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1141 + "line": 1156 } }, { @@ -2352,7 +2405,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1269 + "line": 1290 } }, { @@ -2366,7 +2419,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1270 + "line": 1291 } }, { @@ -2380,7 +2433,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1271 + "line": 1292 } }, { @@ -2394,14 +2447,51 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1272 + "line": 1293 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1267 + "line": 1288 + } + }, + { + "name": "ImGuiWindowBgClickFlags_", + "original_fully_qualified_name": "ImGuiWindowBgClickFlags_", + "is_flags_enum": true, + "elements": [ + { + "name": "ImGuiWindowBgClickFlags_None", + "value_expression": "0", + "value": 0, + "is_count": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1299 + } + }, + { + "name": "ImGuiWindowBgClickFlags_Move", + "value_expression": "1<<0", + "value": 1, + "is_count": false, + "comments": { + "attached": "// Click on bg/void + drag to move window. Cleared by default when using io.ConfigWindowsMoveFromTitleBarOnly." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1300 + } + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1297 } }, { @@ -2417,7 +2507,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1278 + "line": 1305 } }, { @@ -2428,7 +2518,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1279 + "line": 1306 } }, { @@ -2439,7 +2529,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1280 + "line": 1307 } }, { @@ -2450,7 +2540,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1281 + "line": 1308 } }, { @@ -2461,7 +2551,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1282 + "line": 1309 } }, { @@ -2472,7 +2562,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1283 + "line": 1310 } }, { @@ -2483,7 +2573,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1284 + "line": 1311 } }, { @@ -2494,7 +2584,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1285 + "line": 1312 } }, { @@ -2505,7 +2595,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1286 + "line": 1313 } }, { @@ -2516,7 +2606,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1287 + "line": 1314 } }, { @@ -2527,7 +2617,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1288 + "line": 1315 } }, { @@ -2538,7 +2628,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1289 + "line": 1316 } }, { @@ -2549,7 +2639,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1290 + "line": 1317 } }, { @@ -2560,7 +2650,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1291 + "line": 1318 } }, { @@ -2571,14 +2661,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1292 + "line": 1319 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1276 + "line": 1303 } }, { @@ -2594,7 +2684,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1330 + "line": 1357 } }, { @@ -2605,7 +2695,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1331 + "line": 1358 } }, { @@ -2616,7 +2706,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1332 + "line": 1359 } }, { @@ -2627,7 +2717,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1333 + "line": 1360 } }, { @@ -2638,7 +2728,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1334 + "line": 1361 } }, { @@ -2649,14 +2739,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1335 + "line": 1362 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1328 + "line": 1355 } }, { @@ -2671,7 +2761,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1448 + "line": 1475 } }, { @@ -2681,7 +2771,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1449 + "line": 1476 } }, { @@ -2691,14 +2781,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1450 + "line": 1477 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1446 + "line": 1473 } }, { @@ -2714,7 +2804,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1499 + "line": 1526 } }, { @@ -2724,7 +2814,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1500 + "line": 1527 } }, { @@ -2734,7 +2824,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1501 + "line": 1528 } }, { @@ -2744,7 +2834,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1502 + "line": 1529 } }, { @@ -2754,7 +2844,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1503 + "line": 1530 } }, { @@ -2764,7 +2854,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1504 + "line": 1531 } }, { @@ -2774,7 +2864,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1505 + "line": 1532 } }, { @@ -2784,7 +2874,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1506 + "line": 1533 } }, { @@ -2794,14 +2884,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1507 + "line": 1534 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1497 + "line": 1524 } }, { @@ -2824,7 +2914,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1512 + "line": 1539 } }, { @@ -2837,7 +2927,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1513 + "line": 1540 } }, { @@ -2847,7 +2937,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1514 + "line": 1541 } }, { @@ -2857,7 +2947,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1515 + "line": 1542 } }, { @@ -2867,14 +2957,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1516 + "line": 1543 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1510 + "line": 1537 } }, { @@ -2897,7 +2987,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1600 + "line": 1627 } }, { @@ -2911,7 +3001,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1601 + "line": 1628 } }, { @@ -2925,7 +3015,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1602 + "line": 1629 } }, { @@ -2943,7 +3033,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1605 + "line": 1632 } }, { @@ -2957,7 +3047,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1606 + "line": 1633 } }, { @@ -2971,7 +3061,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1607 + "line": 1634 } }, { @@ -2985,7 +3075,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1608 + "line": 1635 } }, { @@ -3003,7 +3093,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1612 + "line": 1639 } }, { @@ -3017,7 +3107,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1613 + "line": 1640 } }, { @@ -3034,7 +3124,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1616 + "line": 1643 } }, { @@ -3048,7 +3138,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1617 + "line": 1644 } }, { @@ -3059,7 +3149,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1618 + "line": 1645 } }, { @@ -3075,7 +3165,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1621 + "line": 1648 } }, { @@ -3086,7 +3176,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1622 + "line": 1649 } }, { @@ -3097,7 +3187,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1623 + "line": 1650 } }, { @@ -3108,7 +3198,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1624 + "line": 1651 } }, { @@ -3119,7 +3209,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1625 + "line": 1652 } }, { @@ -3130,7 +3220,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1626 + "line": 1653 } }, { @@ -3141,7 +3231,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1627 + "line": 1654 } }, { @@ -3152,7 +3242,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1628 + "line": 1655 } }, { @@ -3163,7 +3253,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1629 + "line": 1656 } }, { @@ -3174,7 +3264,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1630 + "line": 1657 } }, { @@ -3185,7 +3275,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1631 + "line": 1658 } }, { @@ -3196,7 +3286,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1632 + "line": 1659 } } ], @@ -3210,7 +3300,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1596 + "line": 1623 } }, { @@ -3226,7 +3316,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1671 + "line": 1698 } }, { @@ -3240,7 +3330,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1672 + "line": 1699 } }, { @@ -3254,7 +3344,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1673 + "line": 1700 } }, { @@ -3268,7 +3358,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1674 + "line": 1701 } }, { @@ -3277,12 +3367,12 @@ "value": 8, "is_count": false, "comments": { - "attached": "// Activation requested by a tabbing request" + "attached": "// Activation requested by a tabbing request (ImGuiNavMoveFlags_IsTabbing)" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1675 + "line": 1702 } }, { @@ -3296,14 +3386,28 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1676 + "line": 1703 + } + }, + { + "name": "ImGuiActivateFlags_FromFocusApi", + "value_expression": "1<<5", + "value": 32, + "is_count": false, + "comments": { + "attached": "// Activation requested by an api request (ImGuiNavMoveFlags_FocusApi)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1704 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1669 + "line": 1696 } }, { @@ -3319,7 +3423,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1682 + "line": 1710 } }, { @@ -3333,7 +3437,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1683 + "line": 1711 } }, { @@ -3347,7 +3451,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1684 + "line": 1712 } }, { @@ -3361,7 +3465,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1685 + "line": 1713 } }, { @@ -3375,7 +3479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1686 + "line": 1714 } }, { @@ -3389,7 +3493,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1687 + "line": 1715 } }, { @@ -3403,7 +3507,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1688 + "line": 1716 } }, { @@ -3417,7 +3521,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1689 + "line": 1717 } }, { @@ -3428,7 +3532,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1690 + "line": 1718 } }, { @@ -3439,7 +3543,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1691 + "line": 1719 } } ], @@ -3451,7 +3555,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1680 + "line": 1708 } }, { @@ -3467,7 +3571,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1696 + "line": 1724 } }, { @@ -3481,7 +3585,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1697 + "line": 1725 } }, { @@ -3495,7 +3599,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1698 + "line": 1726 } }, { @@ -3506,7 +3610,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1699 + "line": 1727 } }, { @@ -3526,7 +3630,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1701 + "line": 1729 } }, { @@ -3546,7 +3650,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1702 + "line": 1730 } }, { @@ -3566,7 +3670,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1703 + "line": 1731 } }, { @@ -3586,14 +3690,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1704 + "line": 1732 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1694 + "line": 1722 } }, { @@ -3609,7 +3713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1711 + "line": 1739 } }, { @@ -3623,7 +3727,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1712 + "line": 1740 } }, { @@ -3634,7 +3738,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1713 + "line": 1741 } }, { @@ -3648,7 +3752,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1714 + "line": 1742 } }, { @@ -3662,7 +3766,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1715 + "line": 1743 } }, { @@ -3673,7 +3777,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1716 + "line": 1744 } }, { @@ -3687,7 +3791,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1717 + "line": 1745 } }, { @@ -3701,7 +3805,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1718 + "line": 1746 } }, { @@ -3710,12 +3814,12 @@ "value": 64, "is_count": false, "comments": { - "attached": "// Force scrolling to min/max (used by Home/End) // FIXME-NAV: Aim to remove or reword, probably unnecessary" + "attached": "// Force scrolling to min/max (used by Home/End) // FIXME-NAV: Aim to remove or reword as ImGuiScrollFlags" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1719 + "line": 1747 } }, { @@ -3726,7 +3830,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1720 + "line": 1748 } }, { @@ -3740,7 +3844,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1721 + "line": 1749 } }, { @@ -3754,7 +3858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1722 + "line": 1750 } }, { @@ -3768,7 +3872,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1723 + "line": 1751 } }, { @@ -3782,7 +3886,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1724 + "line": 1752 } }, { @@ -3796,7 +3900,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1725 + "line": 1753 } }, { @@ -3810,7 +3914,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1726 + "line": 1754 } }, { @@ -3824,7 +3928,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1727 + "line": 1755 } }, { @@ -3838,14 +3942,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1728 + "line": 1756 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1709 + "line": 1737 } }, { @@ -3864,7 +3968,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1733 + "line": 1761 } }, { @@ -3878,7 +3982,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1734 + "line": 1762 } }, { @@ -3888,14 +3992,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1735 + "line": 1763 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1731 + "line": 1759 } }, { @@ -3911,7 +4015,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1769 + "line": 1797 } }, { @@ -3925,7 +4029,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1770 + "line": 1798 } }, { @@ -3939,7 +4043,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1771 + "line": 1799 } } ], @@ -3951,7 +4055,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1767 + "line": 1795 } }, { @@ -3967,7 +4071,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1806 + "line": 1834 } }, { @@ -3981,7 +4085,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1807 + "line": 1835 } }, { @@ -3995,7 +4099,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1808 + "line": 1836 } }, { @@ -4009,7 +4113,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1809 + "line": 1837 } }, { @@ -4023,7 +4127,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1810 + "line": 1838 } }, { @@ -4037,7 +4141,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1811 + "line": 1839 } } ], @@ -4049,7 +4153,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1804 + "line": 1832 } }, { @@ -4077,7 +4181,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1943 + "line": 1971 } }, { @@ -4097,7 +4201,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1944 + "line": 1972 } }, { @@ -4117,7 +4221,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1945 + "line": 1973 } }, { @@ -4137,7 +4241,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1946 + "line": 1974 } }, { @@ -4157,7 +4261,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1947 + "line": 1975 } }, { @@ -4177,7 +4281,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1948 + "line": 1976 } }, { @@ -4197,7 +4301,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1949 + "line": 1977 } }, { @@ -4217,7 +4321,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1950 + "line": 1978 } }, { @@ -4237,7 +4341,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1951 + "line": 1979 } }, { @@ -4262,7 +4366,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1956 + "line": 1984 } }, { @@ -4282,7 +4386,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1957 + "line": 1985 } }, { @@ -4302,7 +4406,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1958 + "line": 1986 } }, { @@ -4322,7 +4426,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1959 + "line": 1987 } }, { @@ -4339,7 +4443,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1960 + "line": 1988 } }, { @@ -4361,7 +4465,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1963 + "line": 1991 } }, { @@ -4378,7 +4482,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1964 + "line": 1992 } }, { @@ -4400,7 +4504,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1967 + "line": 1995 } }, { @@ -4417,7 +4521,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 1968 + "line": 1996 } } ], @@ -4435,7 +4539,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1940 + "line": 1968 } }, { @@ -4456,7 +4560,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1974 + "line": 2002 } }, { @@ -4472,7 +4576,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1975 + "line": 2003 } }, { @@ -4488,7 +4592,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1976 + "line": 2004 } } ], @@ -4506,7 +4610,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1972 + "line": 2000 } }, { @@ -4527,7 +4631,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1981 + "line": 2009 } }, { @@ -4543,7 +4647,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1982 + "line": 2010 } }, { @@ -4559,7 +4663,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1983 + "line": 2011 } }, { @@ -4575,7 +4679,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1984 + "line": 2012 } } ], @@ -4588,7 +4692,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1979 + "line": 2007 } }, { @@ -4609,7 +4713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2057 + "line": 2085 } }, { @@ -4625,7 +4729,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2058 + "line": 2086 } }, { @@ -4641,7 +4745,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2059 + "line": 2087 } }, { @@ -4657,7 +4761,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2060 + "line": 2088 } }, { @@ -4673,7 +4777,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2061 + "line": 2089 } }, { @@ -4689,7 +4793,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2062 + "line": 2090 } }, { @@ -4705,7 +4809,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2063 + "line": 2091 } }, { @@ -4721,12 +4825,28 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2064 + "line": 2092 + } + }, + { + "name": "ImGuiWindowDockStyleCol_UnsavedMarker", + "value": 8, + "is_count": false, + "conditionals": [ + { + "condition": "ifdef", + "expression": "IMGUI_HAS_DOCK" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2093 } }, { "name": "ImGuiWindowDockStyleCol_COUNT", - "value": 8, + "value": 9, "is_count": true, "conditionals": [ { @@ -4737,7 +4857,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2065 + "line": 2094 } } ], @@ -4758,7 +4878,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2055 + "line": 2083 } }, { @@ -4780,7 +4900,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2184 + "line": 2213 } }, { @@ -4790,7 +4910,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2185 + "line": 2214 } }, { @@ -4800,7 +4920,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2186 + "line": 2215 } }, { @@ -4810,7 +4930,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2187 + "line": 2216 } }, { @@ -4820,7 +4940,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2188 + "line": 2217 } }, { @@ -4830,7 +4950,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2189 + "line": 2218 } }, { @@ -4840,7 +4960,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2190 + "line": 2219 } }, { @@ -4850,7 +4970,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2191 + "line": 2220 } }, { @@ -4860,7 +4980,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2192 + "line": 2221 } }, { @@ -4870,7 +4990,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2193 + "line": 2222 } }, { @@ -4880,7 +5000,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2194 + "line": 2223 } }, { @@ -4890,7 +5010,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2195 + "line": 2224 } }, { @@ -4900,7 +5020,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2196 + "line": 2225 } }, { @@ -4910,7 +5030,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2197 + "line": 2226 } } ], @@ -4923,7 +5043,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2182 + "line": 2211 } }, { @@ -4944,7 +5064,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2230 + "line": 2259 } }, { @@ -4958,7 +5078,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2231 + "line": 2260 } }, { @@ -4969,7 +5089,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2232 + "line": 2261 } }, { @@ -4980,7 +5100,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2233 + "line": 2262 } }, { @@ -4991,7 +5111,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2234 + "line": 2263 } }, { @@ -5002,7 +5122,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2235 + "line": 2264 } }, { @@ -5013,7 +5133,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2236 + "line": 2265 } }, { @@ -5024,7 +5144,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2237 + "line": 2266 } }, { @@ -5035,7 +5155,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2238 + "line": 2267 } }, { @@ -5046,7 +5166,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2239 + "line": 2268 } }, { @@ -5057,7 +5177,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2240 + "line": 2269 } }, { @@ -5068,7 +5188,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2241 + "line": 2270 } }, { @@ -5079,7 +5199,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2242 + "line": 2271 } }, { @@ -5090,7 +5210,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 2244 + "line": 2273 } }, { @@ -5104,7 +5224,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2245 + "line": 2274 } }, { @@ -5118,7 +5238,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2246 + "line": 2275 } } ], @@ -5130,7 +5250,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2227 + "line": 2256 } }, { @@ -5145,7 +5265,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5155,7 +5275,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5165,7 +5285,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5175,7 +5295,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5185,7 +5305,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5195,7 +5315,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5205,7 +5325,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5215,14 +5335,14 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2315 + "line": 2354 } }, { @@ -5241,7 +5361,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2947 + "line": 2992 } }, { @@ -5252,7 +5372,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2948 + "line": 2993 } }, { @@ -5266,7 +5386,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2949 + "line": 2994 } } ], @@ -5278,7 +5398,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2945 + "line": 2990 } }, { @@ -5294,7 +5414,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 2955 + "line": 3000 } }, { @@ -5308,7 +5428,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2956 + "line": 3001 } }, { @@ -5322,7 +5442,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2957 + "line": 3002 } }, { @@ -5336,7 +5456,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2958 + "line": 3003 } }, { @@ -5350,7 +5470,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2959 + "line": 3004 } } ], @@ -5362,7 +5482,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2953 + "line": 2998 } } ], @@ -5442,7 +5562,7 @@ } }, { - "name": "ImGuiActivateFlags", + "name": "ImDrawTextFlags", "type": { "declaration": "int", "description": { @@ -5454,6 +5574,23 @@ "preceding": [ "// Flags" ], + "attached": "// -> enum ImDrawTextFlags_ // Flags: for ImTextCalcWordWrapPositionEx()" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h" + } + }, + { + "name": "ImGuiActivateFlags", + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { "attached": "// -> enum ImGuiActivateFlags_ // Flags: for navigation/focus function (will be for ActivateItem() later)" }, "is_internal": false, @@ -5699,6 +5836,23 @@ "filename": "imgui_internal.h" } }, + { + "name": "ImGuiWindowBgClickFlags", + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// -> enum ImGuiWindowBgClickFlags_ // Flags: for overriding behavior of clicking on window background/void." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h" + } + }, { "name": "ImGuiWindowRefreshFlags", "type": { @@ -6141,7 +6295,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -6158,7 +6312,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -6181,7 +6335,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -6191,7 +6345,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -6216,7 +6370,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -6233,7 +6387,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -6256,7 +6410,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -6266,7 +6420,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -6359,14 +6513,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 545 + "line": 560 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 543 + "line": 558 } }, { @@ -6391,7 +6545,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 553 + "line": 568 } }, { @@ -6408,7 +6562,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 553 + "line": 568 } } ], @@ -6420,7 +6574,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 551 + "line": 566 } }, { @@ -6445,7 +6599,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 561 + "line": 576 } }, { @@ -6462,7 +6616,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 561 + "line": 576 } } ], @@ -6474,7 +6628,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 559 + "line": 574 } }, { @@ -6502,7 +6656,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 571 + "line": 586 } }, { @@ -6522,7 +6676,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 572 + "line": 587 } } ], @@ -6535,7 +6689,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 569 + "line": 584 } }, { @@ -6560,7 +6714,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 649 + "line": 665 } } ], @@ -6573,7 +6727,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 647 + "line": 663 } }, { @@ -6601,7 +6755,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 663 + "line": 679 } }, { @@ -6621,7 +6775,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 664 + "line": 680 } } ], @@ -6633,7 +6787,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 661 + "line": 677 } }, { @@ -6661,7 +6815,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 663 + "line": 679 } }, { @@ -6681,7 +6835,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 664 + "line": 680 } } ], @@ -6693,7 +6847,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 661 + "line": 677 } }, { @@ -6721,7 +6875,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 663 + "line": 679 } }, { @@ -6741,7 +6895,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 664 + "line": 680 } } ], @@ -6753,7 +6907,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 661 + "line": 677 } }, { @@ -6779,7 +6933,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 716 + "line": 732 } }, { @@ -6797,7 +6951,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 717 + "line": 733 } }, { @@ -6814,7 +6968,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 718 + "line": 734 } } ], @@ -6826,7 +6980,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 714 + "line": 730 } }, { @@ -6854,7 +7008,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 850 + "line": 866 } }, { @@ -6880,7 +7034,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 851 + "line": 867 } }, { @@ -6903,7 +7057,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 852 + "line": 868 } }, { @@ -6926,7 +7080,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 853 + "line": 869 } }, { @@ -6946,7 +7100,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 854 + "line": 870 } }, { @@ -6966,7 +7120,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 855 + "line": 871 } }, { @@ -6986,7 +7140,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 856 + "line": 872 } }, { @@ -7006,7 +7160,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 857 + "line": 873 } }, { @@ -7026,7 +7180,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 858 + "line": 874 } }, { @@ -7046,7 +7200,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 859 + "line": 875 } }, { @@ -7066,7 +7220,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 860 + "line": 876 } }, { @@ -7086,7 +7240,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 861 + "line": 877 } }, { @@ -7106,7 +7260,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 862 + "line": 878 } }, { @@ -7129,7 +7283,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 863 + "line": 879 } }, { @@ -7157,7 +7311,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 866 + "line": 882 } }, { @@ -7177,7 +7331,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 867 + "line": 883 } }, { @@ -7202,7 +7356,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 868 + "line": 884 } } ], @@ -7217,7 +7371,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 848 + "line": 864 } }, { @@ -7253,7 +7407,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 877 + "line": 893 } }, { @@ -7270,14 +7424,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 878 + "line": 894 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 875 + "line": 891 } }, { @@ -7305,7 +7459,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 885 + "line": 901 } }, { @@ -7325,7 +7479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 886 + "line": 902 } }, { @@ -7345,14 +7499,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 887 + "line": 903 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 883 + "line": 899 } }, { @@ -7377,7 +7531,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -7394,7 +7548,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -7414,7 +7568,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -7424,7 +7578,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -7453,7 +7607,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 896 + "line": 912 } }, { @@ -7471,7 +7625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 897 + "line": 913 } }, { @@ -7492,14 +7646,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 898 + "line": 914 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 894 + "line": 910 } }, { @@ -7524,7 +7678,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 905 + "line": 921 } }, { @@ -7541,7 +7695,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 906 + "line": 922 } } ], @@ -7553,7 +7707,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 903 + "line": 919 } }, { @@ -7578,7 +7732,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 912 + "line": 928 } }, { @@ -7606,7 +7760,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 910 + "line": 926 } }, { @@ -7636,7 +7790,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 913 + "line": 929 } }, { @@ -7658,14 +7812,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 913 + "line": 929 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 913 + "line": 929 } }, { @@ -7698,14 +7852,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 925 + "line": 941 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 923 + "line": 939 } }, { @@ -7733,7 +7887,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 931 + "line": 947 } }, { @@ -7759,7 +7913,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 932 + "line": 948 } }, { @@ -7785,7 +7939,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 933 + "line": 949 } }, { @@ -7811,7 +7965,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 934 + "line": 950 } } ], @@ -7823,7 +7977,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 929 + "line": 945 } }, { @@ -7848,7 +8002,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 783 + "line": 799 } } ], @@ -7860,7 +8014,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 781 + "line": 797 } }, { @@ -7885,7 +8039,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 783 + "line": 799 } } ], @@ -7897,7 +8051,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 781 + "line": 797 } }, { @@ -7922,7 +8076,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -7939,7 +8093,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -7959,7 +8113,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -7969,7 +8123,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -7994,7 +8148,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8011,7 +8165,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8031,7 +8185,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8041,7 +8195,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8066,7 +8220,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8083,7 +8237,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8106,7 +8260,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8116,7 +8270,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8141,7 +8295,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8158,7 +8312,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8181,7 +8335,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8191,7 +8345,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8216,7 +8370,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8233,7 +8387,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8253,7 +8407,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8263,7 +8417,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8288,7 +8442,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8305,7 +8459,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8325,7 +8479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8335,7 +8489,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8360,7 +8514,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8377,7 +8531,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8397,7 +8551,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8407,7 +8561,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8432,7 +8586,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8449,7 +8603,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8469,7 +8623,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8479,7 +8633,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8504,7 +8658,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8521,7 +8675,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8541,7 +8695,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8551,7 +8705,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8576,7 +8730,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8593,7 +8747,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8613,7 +8767,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8623,7 +8777,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8648,7 +8802,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8665,7 +8819,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8685,7 +8839,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8695,7 +8849,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8720,7 +8874,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8737,7 +8891,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8757,7 +8911,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8767,7 +8921,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8792,7 +8946,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8809,7 +8963,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8829,7 +8983,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8839,7 +8993,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8864,7 +9018,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8881,7 +9035,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8901,7 +9055,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8911,7 +9065,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -8936,7 +9090,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -8953,7 +9107,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -8973,7 +9127,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -8983,7 +9137,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9008,7 +9162,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9025,7 +9179,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9045,7 +9199,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9055,7 +9209,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9080,7 +9234,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9097,7 +9251,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9117,7 +9271,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9127,7 +9281,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9152,7 +9306,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9169,7 +9323,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9189,7 +9343,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9199,7 +9353,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9224,7 +9378,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9241,7 +9395,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9261,7 +9415,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9271,7 +9425,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9296,7 +9450,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9313,7 +9467,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9333,7 +9487,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9343,7 +9497,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9368,7 +9522,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9385,7 +9539,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9405,7 +9559,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9415,7 +9569,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9440,7 +9594,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9457,7 +9611,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9477,7 +9631,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9487,7 +9641,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9512,7 +9666,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9529,7 +9683,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9549,7 +9703,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9559,7 +9713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9584,7 +9738,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9601,7 +9755,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9621,7 +9775,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9631,7 +9785,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9656,7 +9810,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9673,7 +9827,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9693,7 +9847,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9703,7 +9857,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9728,7 +9882,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9745,7 +9899,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9765,7 +9919,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9775,7 +9929,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9800,7 +9954,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9817,7 +9971,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9837,7 +9991,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9847,7 +10001,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9872,7 +10026,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9889,7 +10043,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9909,7 +10063,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9919,7 +10073,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -9944,7 +10098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -9961,7 +10115,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -9981,7 +10135,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -9991,7 +10145,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10016,7 +10170,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10033,7 +10187,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10053,7 +10207,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10063,7 +10217,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10088,7 +10242,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10105,7 +10259,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10125,7 +10279,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10135,7 +10289,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10160,7 +10314,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10177,7 +10331,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10197,7 +10351,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10207,7 +10361,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10232,7 +10386,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10249,7 +10403,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10269,7 +10423,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10279,7 +10433,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10304,7 +10458,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10321,7 +10475,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10341,7 +10495,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10351,7 +10505,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10376,7 +10530,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10393,7 +10547,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10419,7 +10573,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10429,7 +10583,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10454,7 +10608,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -10471,7 +10625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -10491,7 +10645,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -10501,7 +10655,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -10529,7 +10683,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 749 + "line": 765 } }, { @@ -10549,7 +10703,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 750 + "line": 766 } }, { @@ -10569,7 +10723,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 751 + "line": 767 } }, { @@ -10589,7 +10743,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 752 + "line": 768 } } ], @@ -10601,7 +10755,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 747 + "line": 763 } }, { @@ -10629,7 +10783,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 749 + "line": 765 } }, { @@ -10649,7 +10803,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 750 + "line": 766 } }, { @@ -10669,7 +10823,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 751 + "line": 767 } }, { @@ -10689,7 +10843,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 752 + "line": 768 } } ], @@ -10701,7 +10855,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 747 + "line": 763 } }, { @@ -10729,7 +10883,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 749 + "line": 765 } }, { @@ -10749,7 +10903,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 750 + "line": 766 } }, { @@ -10769,7 +10923,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 751 + "line": 767 } }, { @@ -10789,7 +10943,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 752 + "line": 768 } } ], @@ -10801,7 +10955,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 747 + "line": 763 } }, { @@ -10813,7 +10967,7 @@ "is_anonymous": false, "fields": [ { - "name": "LineOffsets", + "name": "Offsets", "is_array": false, "is_anonymous": false, "type": { @@ -10826,7 +10980,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 802 + "line": 818 } }, { @@ -10847,7 +11001,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 803 + "line": 819 } } ], @@ -10860,7 +11014,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 800 + "line": 816 } }, { @@ -10885,7 +11039,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1150 + "line": 1165 } }, { @@ -10902,7 +11056,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1151 + "line": 1166 } }, { @@ -10919,7 +11073,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1152 + "line": 1167 } }, { @@ -10936,7 +11090,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1153 + "line": 1168 } }, { @@ -10953,7 +11107,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1154 + "line": 1169 } }, { @@ -10970,7 +11124,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1155 + "line": 1170 } } ], @@ -10982,7 +11136,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1148 + "line": 1163 } }, { @@ -11007,7 +11161,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1163 + "line": 1178 } }, { @@ -11024,7 +11178,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1164 + "line": 1179 } }, { @@ -11041,7 +11195,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1165 + "line": 1180 } }, { @@ -11058,7 +11212,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1166 + "line": 1181 } }, { @@ -11075,7 +11229,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1167 + "line": 1182 } }, { @@ -11092,7 +11246,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1168 + "line": 1183 } }, { @@ -11109,7 +11263,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1169 + "line": 1184 } }, { @@ -11126,7 +11280,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1170 + "line": 1185 } }, { @@ -11143,7 +11297,24 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1171 + "line": 1186 + } + }, + { + "name": "BackupActiveIdHasBeenEditedThisFrame", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1187 } }, { @@ -11160,7 +11331,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1172 + "line": 1188 } }, { @@ -11177,7 +11348,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1173 + "line": 1189 } }, { @@ -11194,7 +11365,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1174 + "line": 1190 } }, { @@ -11211,7 +11382,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1175 + "line": 1191 } } ], @@ -11223,7 +11394,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1161 + "line": 1176 } }, { @@ -11248,7 +11419,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1181 + "line": 1197 } }, { @@ -11265,7 +11436,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1182 + "line": 1198 } }, { @@ -11282,7 +11453,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1183 + "line": 1199 } }, { @@ -11302,7 +11473,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1184 + "line": 1200 } }, { @@ -11322,7 +11493,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1185 + "line": 1201 } }, { @@ -11339,7 +11510,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1186 + "line": 1202 } }, { @@ -11356,7 +11527,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1187 + "line": 1203 } }, { @@ -11381,7 +11552,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1188 + "line": 1204 } } ], @@ -11393,7 +11564,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1179 + "line": 1195 } }, { @@ -11421,7 +11592,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1199 + "line": 1215 } }, { @@ -11441,7 +11612,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1200 + "line": 1216 } } ], @@ -11453,7 +11624,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1197 + "line": 1213 } }, { @@ -11467,7 +11638,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1214 + "line": 1230 } }, { @@ -11498,7 +11669,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1221 + "line": 1237 } }, { @@ -11521,7 +11692,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1222 + "line": 1238 } }, { @@ -11541,7 +11712,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1223 + "line": 1239 } }, { @@ -11561,7 +11732,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1224 + "line": 1240 } }, { @@ -11581,7 +11752,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1225 + "line": 1241 } }, { @@ -11607,7 +11778,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1226 + "line": 1242 } }, { @@ -11627,7 +11798,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1227 + "line": 1243 } }, { @@ -11647,7 +11818,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1228 + "line": 1244 } }, { @@ -11667,7 +11838,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1229 + "line": 1245 } }, { @@ -11687,7 +11858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1230 + "line": 1246 } }, { @@ -11707,7 +11878,47 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1231 + "line": 1247 + } + }, + { + "name": "LineCount", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// last line count (solely for debugging)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1248 + } + }, + { + "name": "WrapWidth", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// word-wrapping width" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1249 } }, { @@ -11727,7 +11938,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1232 + "line": 1250 } }, { @@ -11747,7 +11958,27 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1233 + "line": 1251 + } + }, + { + "name": "CursorCenterY", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// set when we want scrolling to be centered over the cursor position (while resizing a word-wrapping field)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1252 } }, { @@ -11767,7 +11998,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1234 + "line": 1253 } }, { @@ -11787,7 +12018,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1235 + "line": 1254 } }, { @@ -11807,7 +12038,27 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1236 + "line": 1255 + } + }, + { + "name": "LastMoveDirectionLR", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImS8", + "description": { + "kind": "User", + "name": "ImS8" + } + }, + "comments": { + "attached": "// ImGuiDir_Left or ImGuiDir_Right. track last movement direction so when cursor cross over a word-wrapping boundaries we can display it on either line depending on last move.s" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1256 } }, { @@ -11824,7 +12075,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1237 + "line": 1257 } }, { @@ -11841,7 +12092,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1238 + "line": 1258 } } ], @@ -11854,7 +12105,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1219 + "line": 1235 } }, { @@ -11879,7 +12130,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1298 + "line": 1325 } }, { @@ -11901,7 +12152,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1301 + "line": 1328 } }, { @@ -11918,7 +12169,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1302 + "line": 1329 } }, { @@ -11935,7 +12186,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1303 + "line": 1330 } }, { @@ -11952,7 +12203,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1304 + "line": 1331 } }, { @@ -11969,7 +12220,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1305 + "line": 1332 } }, { @@ -11986,7 +12237,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1306 + "line": 1333 } }, { @@ -12003,7 +12254,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1307 + "line": 1334 } }, { @@ -12020,7 +12271,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1308 + "line": 1335 } }, { @@ -12037,7 +12288,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1309 + "line": 1336 } }, { @@ -12057,7 +12308,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1310 + "line": 1337 } }, { @@ -12074,7 +12325,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1311 + "line": 1338 } }, { @@ -12091,7 +12342,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1312 + "line": 1339 } }, { @@ -12108,7 +12359,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1313 + "line": 1340 } }, { @@ -12125,7 +12376,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1314 + "line": 1341 } }, { @@ -12142,7 +12393,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1315 + "line": 1342 } }, { @@ -12162,7 +12413,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1316 + "line": 1343 } }, { @@ -12182,7 +12433,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1317 + "line": 1344 } }, { @@ -12199,7 +12450,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1318 + "line": 1345 } }, { @@ -12216,7 +12467,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1319 + "line": 1346 } }, { @@ -12233,7 +12484,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1320 + "line": 1347 } }, { @@ -12253,7 +12504,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1321 + "line": 1348 } }, { @@ -12270,7 +12521,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1322 + "line": 1349 } } ], @@ -12282,7 +12533,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1296 + "line": 1323 } }, { @@ -12310,7 +12561,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1340 + "line": 1367 } }, { @@ -12330,7 +12581,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1341 + "line": 1368 } }, { @@ -12353,7 +12604,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1344 + "line": 1371 } }, { @@ -12373,7 +12624,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1345 + "line": 1372 } }, { @@ -12393,7 +12644,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1346 + "line": 1373 } }, { @@ -12413,7 +12664,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1347 + "line": 1374 } }, { @@ -12433,7 +12684,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1348 + "line": 1375 } }, { @@ -12453,7 +12704,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1349 + "line": 1376 } }, { @@ -12473,7 +12724,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1350 + "line": 1377 } }, { @@ -12493,7 +12744,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1351 + "line": 1378 } }, { @@ -12513,14 +12764,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1352 + "line": 1379 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1338 + "line": 1365 } }, { @@ -12545,7 +12796,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1361 + "line": 1388 } }, { @@ -12565,7 +12816,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1362 + "line": 1389 } }, { @@ -12585,7 +12836,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1363 + "line": 1390 } }, { @@ -12605,7 +12856,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1364 + "line": 1391 } }, { @@ -12625,7 +12876,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1365 + "line": 1392 } }, { @@ -12648,7 +12899,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1367 + "line": 1394 } }, { @@ -12668,7 +12919,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1368 + "line": 1395 } }, { @@ -12688,7 +12939,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1369 + "line": 1396 } } ], @@ -12700,7 +12951,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1359 + "line": 1386 } }, { @@ -12725,7 +12976,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1380 + "line": 1407 } }, { @@ -12742,7 +12993,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1381 + "line": 1408 } }, { @@ -12762,7 +13013,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1382 + "line": 1409 } }, { @@ -12782,7 +13033,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1383 + "line": 1410 } }, { @@ -12799,7 +13050,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1384 + "line": 1411 } }, { @@ -12816,7 +13067,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1385 + "line": 1412 } }, { @@ -12833,7 +13084,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1386 + "line": 1413 } } ], @@ -12848,7 +13099,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1378 + "line": 1405 } }, { @@ -12873,7 +13124,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1392 + "line": 1419 } }, { @@ -12890,7 +13141,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1393 + "line": 1420 } }, { @@ -12907,7 +13158,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1394 + "line": 1421 } }, { @@ -12924,7 +13175,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1395 + "line": 1422 } }, { @@ -12941,7 +13192,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1396 + "line": 1423 } }, { @@ -12958,7 +13209,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1397 + "line": 1424 } }, { @@ -12975,7 +13226,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1398 + "line": 1425 } }, { @@ -12992,7 +13243,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1399 + "line": 1426 } }, { @@ -13009,7 +13260,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1400 + "line": 1427 } }, { @@ -13026,7 +13277,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1401 + "line": 1428 } }, { @@ -13043,7 +13294,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1402 + "line": 1429 } } ], @@ -13055,7 +13306,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1390 + "line": 1417 } }, { @@ -13083,7 +13334,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1410 + "line": 1437 } }, { @@ -13100,7 +13351,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1411 + "line": 1438 } }, { @@ -13120,7 +13371,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1412 + "line": 1439 } }, { @@ -13140,7 +13391,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1413 + "line": 1440 } }, { @@ -13157,7 +13408,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1414 + "line": 1441 } } ], @@ -13169,7 +13420,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1408 + "line": 1435 } }, { @@ -13194,7 +13445,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1419 + "line": 1446 } }, { @@ -13211,7 +13462,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1420 + "line": 1447 } }, { @@ -13228,14 +13479,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1421 + "line": 1448 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1417 + "line": 1444 } }, { @@ -13266,7 +13517,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1426 + "line": 1453 } }, { @@ -13286,14 +13537,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1427 + "line": 1454 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1424 + "line": 1451 } }, { @@ -13318,7 +13569,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1436 + "line": 1463 } }, { @@ -13335,7 +13586,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1437 + "line": 1464 } }, { @@ -13352,7 +13603,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1438 + "line": 1465 } }, { @@ -13369,7 +13620,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1439 + "line": 1466 } } ], @@ -13381,7 +13632,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1434 + "line": 1461 } }, { @@ -13409,7 +13660,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1456 + "line": 1483 } }, { @@ -13432,7 +13683,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1457 + "line": 1484 } }, { @@ -13455,7 +13706,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1458 + "line": 1485 } }, { @@ -13475,7 +13726,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1459 + "line": 1486 } }, { @@ -13495,7 +13746,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1460 + "line": 1487 } }, { @@ -13515,7 +13766,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1461 + "line": 1488 } }, { @@ -13535,7 +13786,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1462 + "line": 1489 } }, { @@ -13555,7 +13806,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1463 + "line": 1490 } } ], @@ -13567,7 +13818,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1454 + "line": 1481 } }, { @@ -13629,7 +13880,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1521 + "line": 1548 } }, { @@ -13646,7 +13897,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1521 + "line": 1548 } }, { @@ -13663,7 +13914,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1521 + "line": 1548 } } ], @@ -13676,7 +13927,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1521 + "line": 1548 } }, { @@ -13701,7 +13952,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1522 + "line": 1549 } }, { @@ -13718,7 +13969,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1522 + "line": 1549 } }, { @@ -13735,14 +13986,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1522 + "line": 1549 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1522 + "line": 1549 } }, { @@ -13767,7 +14018,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1523 + "line": 1550 } }, { @@ -13784,7 +14035,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1523 + "line": 1550 } }, { @@ -13801,14 +14052,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1523 + "line": 1550 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1523 + "line": 1550 } }, { @@ -13833,14 +14084,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1524 + "line": 1551 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1524 + "line": 1551 } }, { @@ -13865,7 +14116,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1525 + "line": 1552 } }, { @@ -13882,7 +14133,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1525 + "line": 1552 } }, { @@ -13899,14 +14150,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1525 + "line": 1552 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1525 + "line": 1552 } }, { @@ -13931,14 +14182,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1526 + "line": 1553 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1526 + "line": 1553 } }, { @@ -13963,14 +14214,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1527 + "line": 1554 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1527 + "line": 1554 } }, { @@ -13995,7 +14246,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1531 + "line": 1558 } }, { @@ -14012,7 +14263,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1532 + "line": 1559 } }, { @@ -14032,7 +14283,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1533 + "line": 1560 } }, { @@ -14065,14 +14316,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1544 + "line": 1571 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1529 + "line": 1556 } }, { @@ -14100,7 +14351,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1536 + "line": 1563 } }, { @@ -14120,7 +14371,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1537 + "line": 1564 } }, { @@ -14140,7 +14391,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1538 + "line": 1565 } }, { @@ -14160,7 +14411,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1539 + "line": 1566 } }, { @@ -14180,7 +14431,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1540 + "line": 1567 } }, { @@ -14200,7 +14451,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1541 + "line": 1568 } }, { @@ -14220,14 +14471,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1542 + "line": 1569 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1534 + "line": 1561 } }, { @@ -14252,7 +14503,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1559 + "line": 1586 } }, { @@ -14272,7 +14523,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1560 + "line": 1587 } }, { @@ -14280,10 +14531,10 @@ "is_array": false, "is_anonymous": false, "type": { - "declaration": "ImU8", + "declaration": "ImU16", "description": { "kind": "User", - "name": "ImU8" + "name": "ImU16" } }, "comments": { @@ -14292,7 +14543,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1561 + "line": 1588 } }, { @@ -14300,10 +14551,10 @@ "is_array": false, "is_anonymous": false, "type": { - "declaration": "ImU8", + "declaration": "ImU16", "description": { "kind": "User", - "name": "ImU8" + "name": "ImU16" } }, "comments": { @@ -14312,7 +14563,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1562 + "line": 1589 } }, { @@ -14329,7 +14580,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1563 + "line": 1590 } }, { @@ -14346,7 +14597,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1564 + "line": 1591 } } ], @@ -14358,7 +14609,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1557 + "line": 1584 } }, { @@ -14391,7 +14642,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1573 + "line": 1600 } }, { @@ -14408,7 +14659,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1574 + "line": 1601 } }, { @@ -14428,7 +14679,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1575 + "line": 1602 } } ], @@ -14441,7 +14692,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1571 + "line": 1598 } }, { @@ -14466,7 +14717,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1585 + "line": 1612 } }, { @@ -14483,7 +14734,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1586 + "line": 1613 } }, { @@ -14503,7 +14754,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1587 + "line": 1614 } }, { @@ -14523,7 +14774,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1588 + "line": 1615 } } ], @@ -14536,7 +14787,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1583 + "line": 1610 } }, { @@ -14561,7 +14812,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1642 + "line": 1669 } }, { @@ -14578,7 +14829,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1643 + "line": 1670 } }, { @@ -14598,7 +14849,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1644 + "line": 1671 } }, { @@ -14618,7 +14869,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1645 + "line": 1672 } }, { @@ -14638,7 +14889,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1646 + "line": 1673 } } ], @@ -14650,7 +14901,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1640 + "line": 1667 } }, { @@ -14678,7 +14929,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1655 + "line": 1682 } }, { @@ -14695,7 +14946,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1656 + "line": 1683 } }, { @@ -14712,7 +14963,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1657 + "line": 1684 } }, { @@ -14729,7 +14980,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1658 + "line": 1685 } }, { @@ -14746,7 +14997,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1659 + "line": 1686 } } ], @@ -14758,7 +15009,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1653 + "line": 1680 } }, { @@ -14789,7 +15040,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1741 + "line": 1769 } }, { @@ -14809,7 +15060,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1742 + "line": 1770 } }, { @@ -14829,7 +15080,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1743 + "line": 1771 } }, { @@ -14849,7 +15100,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1744 + "line": 1772 } }, { @@ -14869,7 +15120,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1745 + "line": 1773 } }, { @@ -14889,7 +15140,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1746 + "line": 1774 } }, { @@ -14909,7 +15160,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1747 + "line": 1775 } }, { @@ -14929,7 +15180,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1748 + "line": 1776 } }, { @@ -14949,7 +15200,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1749 + "line": 1777 } } ], @@ -14961,7 +15212,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1739 + "line": 1767 } }, { @@ -14986,7 +15237,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1758 + "line": 1786 } }, { @@ -15003,7 +15254,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1759 + "line": 1787 } } ], @@ -15015,7 +15266,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1756 + "line": 1784 } }, { @@ -15043,7 +15294,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1777 + "line": 1805 } }, { @@ -15060,7 +15311,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1778 + "line": 1806 } }, { @@ -15086,7 +15337,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1779 + "line": 1807 } }, { @@ -15106,7 +15357,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1780 + "line": 1808 } }, { @@ -15126,7 +15377,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1781 + "line": 1809 } }, { @@ -15146,7 +15397,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1782 + "line": 1810 } } ], @@ -15158,7 +15409,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1775 + "line": 1803 } }, { @@ -15186,7 +15437,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1788 + "line": 1816 } }, { @@ -15211,7 +15462,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1789 + "line": 1817 } }, { @@ -15228,7 +15479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1790 + "line": 1818 } }, { @@ -15246,7 +15497,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1791 + "line": 1819 } }, { @@ -15264,7 +15515,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1792 + "line": 1820 } }, { @@ -15285,7 +15536,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1793 + "line": 1821 } } ], @@ -15297,7 +15548,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1786 + "line": 1814 } }, { @@ -15325,7 +15576,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1826 + "line": 1854 } }, { @@ -15342,7 +15593,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1827 + "line": 1855 } }, { @@ -15362,7 +15613,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1828 + "line": 1856 } }, { @@ -15379,14 +15630,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1829 + "line": 1857 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1824 + "line": 1852 } }, { @@ -15411,7 +15662,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1836 + "line": 1864 } }, { @@ -15428,7 +15679,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1837 + "line": 1865 } }, { @@ -15445,7 +15696,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1838 + "line": 1866 } }, { @@ -15462,7 +15713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1839 + "line": 1867 } }, { @@ -15479,7 +15730,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1840 + "line": 1868 } }, { @@ -15496,7 +15747,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1841 + "line": 1869 } }, { @@ -15516,7 +15767,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1842 + "line": 1870 } }, { @@ -15536,7 +15787,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1842 + "line": 1870 } }, { @@ -15553,7 +15804,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1843 + "line": 1871 } }, { @@ -15570,7 +15821,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1843 + "line": 1871 } }, { @@ -15590,7 +15841,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1844 + "line": 1872 } }, { @@ -15610,7 +15861,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1845 + "line": 1873 } }, { @@ -15630,7 +15881,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1846 + "line": 1874 } }, { @@ -15650,7 +15901,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1847 + "line": 1875 } }, { @@ -15670,7 +15921,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1848 + "line": 1876 } }, { @@ -15687,7 +15938,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1849 + "line": 1877 } }, { @@ -15704,14 +15955,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1850 + "line": 1878 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1834 + "line": 1862 } }, { @@ -15741,7 +15992,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1862 + "line": 1890 } }, { @@ -15758,7 +16009,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1863 + "line": 1891 } }, { @@ -15775,7 +16026,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1864 + "line": 1892 } }, { @@ -15795,7 +16046,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1865 + "line": 1893 } }, { @@ -15812,7 +16063,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1866 + "line": 1894 } }, { @@ -15829,7 +16080,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1867 + "line": 1895 } }, { @@ -15850,7 +16101,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1868 + "line": 1896 } }, { @@ -15870,7 +16121,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1869 + "line": 1897 } }, { @@ -15890,7 +16141,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1870 + "line": 1898 } }, { @@ -15910,7 +16161,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1871 + "line": 1899 } }, { @@ -15930,7 +16181,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1872 + "line": 1900 } }, { @@ -15953,7 +16204,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1875 + "line": 1903 } }, { @@ -15973,7 +16224,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1876 + "line": 1904 } }, { @@ -15993,7 +16244,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1877 + "line": 1905 } }, { @@ -16010,14 +16261,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1878 + "line": 1906 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1859 + "line": 1887 } }, { @@ -16045,7 +16296,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1893 + "line": 1921 } }, { @@ -16065,7 +16316,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1894 + "line": 1922 } }, { @@ -16085,7 +16336,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1895 + "line": 1923 } }, { @@ -16102,7 +16353,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1896 + "line": 1924 } }, { @@ -16119,7 +16370,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1897 + "line": 1925 } }, { @@ -16136,7 +16387,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1898 + "line": 1926 } }, { @@ -16156,7 +16407,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1899 + "line": 1927 } }, { @@ -16173,7 +16424,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1900 + "line": 1928 } }, { @@ -16190,7 +16441,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1901 + "line": 1929 } }, { @@ -16210,7 +16461,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1902 + "line": 1930 } }, { @@ -16230,7 +16481,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1903 + "line": 1931 } }, { @@ -16250,7 +16501,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1904 + "line": 1932 } }, { @@ -16270,7 +16521,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1905 + "line": 1933 } }, { @@ -16287,7 +16538,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1906 + "line": 1934 } }, { @@ -16307,7 +16558,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1907 + "line": 1935 } }, { @@ -16327,7 +16578,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1908 + "line": 1936 } } ], @@ -16339,7 +16590,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1891 + "line": 1919 } }, { @@ -16367,7 +16618,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1918 + "line": 1946 } }, { @@ -16384,7 +16635,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1919 + "line": 1947 } }, { @@ -16404,7 +16655,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1920 + "line": 1948 } }, { @@ -16424,7 +16675,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1921 + "line": 1949 } }, { @@ -16444,7 +16695,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1922 + "line": 1950 } }, { @@ -16464,7 +16715,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1923 + "line": 1951 } }, { @@ -16484,7 +16735,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1924 + "line": 1952 } }, { @@ -16504,7 +16755,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1925 + "line": 1953 } } ], @@ -16516,7 +16767,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1916 + "line": 1944 } }, { @@ -16547,7 +16798,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1990 + "line": 2018 } }, { @@ -16573,7 +16824,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1991 + "line": 2019 } }, { @@ -16599,7 +16850,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1992 + "line": 2020 } }, { @@ -16625,7 +16876,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1993 + "line": 2021 } }, { @@ -16651,7 +16902,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1994 + "line": 2022 } }, { @@ -16674,7 +16925,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1995 + "line": 2023 } }, { @@ -16700,7 +16951,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1996 + "line": 2024 } }, { @@ -16734,7 +16985,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1997 + "line": 2025 } }, { @@ -16760,7 +17011,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1998 + "line": 2026 } }, { @@ -16786,7 +17037,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1999 + "line": 2027 } }, { @@ -16812,7 +17063,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2000 + "line": 2028 } }, { @@ -16838,7 +17089,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2001 + "line": 2029 } }, { @@ -16864,7 +17115,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2002 + "line": 2030 } }, { @@ -16890,7 +17141,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2003 + "line": 2031 } }, { @@ -16916,7 +17167,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2004 + "line": 2032 } }, { @@ -16939,7 +17190,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2005 + "line": 2033 } }, { @@ -16965,7 +17216,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2007 + "line": 2035 } }, { @@ -16994,7 +17245,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2008 + "line": 2036 } }, { @@ -17023,7 +17274,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2009 + "line": 2037 } }, { @@ -17052,7 +17303,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2010 + "line": 2038 } }, { @@ -17078,7 +17329,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2011 + "line": 2039 } }, { @@ -17104,7 +17355,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2012 + "line": 2040 } }, { @@ -17130,7 +17381,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2013 + "line": 2041 } }, { @@ -17156,7 +17407,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2014 + "line": 2042 } }, { @@ -17182,7 +17433,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2015 + "line": 2043 } }, { @@ -17208,7 +17459,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2016 + "line": 2044 } }, { @@ -17234,7 +17485,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2017 + "line": 2045 } }, { @@ -17260,7 +17511,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2018 + "line": 2046 } }, { @@ -17284,7 +17535,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2019 + "line": 2047 } }, { @@ -17308,7 +17559,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2020 + "line": 2048 } }, { @@ -17332,7 +17583,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2021 + "line": 2049 } }, { @@ -17359,7 +17610,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2022 + "line": 2050 } }, { @@ -17383,7 +17634,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2023 + "line": 2051 } }, { @@ -17407,7 +17658,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2024 + "line": 2052 } }, { @@ -17434,7 +17685,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2025 + "line": 2053 } }, { @@ -17458,7 +17709,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2026 + "line": 2054 } }, { @@ -17482,7 +17733,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2027 + "line": 2055 } }, { @@ -17509,7 +17760,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2028 + "line": 2056 } }, { @@ -17533,7 +17784,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2029 + "line": 2057 } }, { @@ -17560,7 +17811,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2030 + "line": 2058 } }, { @@ -17584,7 +17835,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2031 + "line": 2059 } }, { @@ -17608,7 +17859,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2032 + "line": 2060 } } ], @@ -17626,7 +17877,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1988 + "line": 2016 } }, { @@ -17662,7 +17913,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2071 + "line": 2100 } } ], @@ -17680,7 +17931,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2069 + "line": 2098 } }, { @@ -17714,7 +17965,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2076 + "line": 2105 } }, { @@ -17737,7 +17988,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2077 + "line": 2106 } }, { @@ -17760,7 +18011,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2078 + "line": 2107 } }, { @@ -17783,7 +18034,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2079 + "line": 2108 } } ], @@ -17796,7 +18047,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2074 + "line": 2103 } }, { @@ -17827,7 +18078,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4012 + "line": 4057 } }, { @@ -17847,7 +18098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4013 + "line": 4058 } }, { @@ -17867,7 +18118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4014 + "line": 4059 } }, { @@ -17887,7 +18138,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4015 + "line": 4060 } }, { @@ -17907,7 +18158,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4016 + "line": 4061 } }, { @@ -17927,7 +18178,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4017 + "line": 4062 } }, { @@ -17947,7 +18198,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4018 + "line": 4063 } }, { @@ -17967,7 +18218,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4019 + "line": 4064 } }, { @@ -17987,7 +18238,30 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4020 + "line": 4065 + } + }, + { + "name": "ParentViewport", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiViewport*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiViewport" + } + } + }, + "comments": { + "attached": "// (Advanced) Direct shortcut to ImGui::FindViewportByID(ParentViewportId). NULL: no parent." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 4066 } }, { @@ -18010,7 +18284,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4021 + "line": 4067 } }, { @@ -18040,7 +18314,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4028 + "line": 4074 } }, { @@ -18063,7 +18337,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4029 + "line": 4075 } }, { @@ -18086,7 +18360,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4030 + "line": 4076 } }, { @@ -18109,7 +18383,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4031 + "line": 4077 } }, { @@ -18129,7 +18403,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4032 + "line": 4078 } }, { @@ -18149,7 +18423,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4033 + "line": 4079 } }, { @@ -18169,7 +18443,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4034 + "line": 4080 } }, { @@ -18189,7 +18463,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4035 + "line": 4081 } }, { @@ -18212,7 +18486,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2093 + "line": 2122 } }, { @@ -18229,7 +18503,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2094 + "line": 2123 } }, { @@ -18249,7 +18523,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2095 + "line": 2124 } }, { @@ -18269,7 +18543,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2096 + "line": 2125 } }, { @@ -18286,7 +18560,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2097 + "line": 2126 } }, { @@ -18303,7 +18577,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2098 + "line": 2127 } }, { @@ -18320,7 +18594,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2099 + "line": 2128 } }, { @@ -18340,7 +18614,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2100 + "line": 2129 } }, { @@ -18357,7 +18631,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2101 + "line": 2130 } }, { @@ -18377,7 +18651,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2102 + "line": 2131 } }, { @@ -18394,7 +18668,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2103 + "line": 2132 } }, { @@ -18419,7 +18693,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2104 + "line": 2133 } }, { @@ -18447,7 +18721,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2105 + "line": 2134 } }, { @@ -18464,7 +18738,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2106 + "line": 2135 } }, { @@ -18484,7 +18758,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2107 + "line": 2136 } }, { @@ -18501,7 +18775,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2108 + "line": 2137 } }, { @@ -18518,7 +18792,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2109 + "line": 2138 } }, { @@ -18535,7 +18809,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2110 + "line": 2139 } }, { @@ -18561,7 +18835,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2116 + "line": 2145 } }, { @@ -18581,7 +18855,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2117 + "line": 2146 } }, { @@ -18601,7 +18875,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2118 + "line": 2147 } }, { @@ -18621,7 +18895,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2119 + "line": 2148 } } ], @@ -18634,7 +18908,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2091 + "line": 2120 } }, { @@ -18659,7 +18933,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2145 + "line": 2174 } }, { @@ -18679,7 +18953,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2146 + "line": 2175 } }, { @@ -18696,7 +18970,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2147 + "line": 2176 } }, { @@ -18713,7 +18987,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2148 + "line": 2177 } }, { @@ -18730,7 +19004,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2149 + "line": 2178 } }, { @@ -18750,7 +19024,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2150 + "line": 2179 } }, { @@ -18770,7 +19044,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2151 + "line": 2180 } }, { @@ -18790,7 +19064,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2152 + "line": 2181 } }, { @@ -18807,7 +19081,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2153 + "line": 2182 } }, { @@ -18824,7 +19098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2154 + "line": 2183 } }, { @@ -18844,7 +19118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2155 + "line": 2184 } }, { @@ -18864,7 +19138,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2156 + "line": 2185 } } ], @@ -18878,7 +19152,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2143 + "line": 2172 } }, { @@ -18912,7 +19186,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2164 + "line": 2193 } }, { @@ -18932,7 +19206,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2165 + "line": 2194 } }, { @@ -19660,14 +19934,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2172 + "line": 2201 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2162 + "line": 2191 } }, { @@ -19692,7 +19966,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2202 + "line": 2231 } }, { @@ -19715,14 +19989,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2203 + "line": 2232 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2200 + "line": 2229 } }, { @@ -19747,7 +20021,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } }, { @@ -19764,7 +20038,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2252 + "line": 2281 } }, { @@ -19781,14 +20055,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2253 + "line": 2282 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -19816,7 +20090,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2258 + "line": 2287 } }, { @@ -19833,7 +20107,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2259 + "line": 2288 } }, { @@ -19853,7 +20127,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2260 + "line": 2289 } }, { @@ -19878,14 +20152,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2261 + "line": 2290 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2256 + "line": 2285 } }, { @@ -19911,7 +20185,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2268 + "line": 2297 } }, { @@ -19929,7 +20203,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2269 + "line": 2298 } }, { @@ -19947,7 +20221,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2270 + "line": 2299 } }, { @@ -19965,7 +20239,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2271 + "line": 2300 } }, { @@ -19983,7 +20257,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2272 + "line": 2301 } }, { @@ -20001,7 +20275,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2273 + "line": 2302 } }, { @@ -20019,7 +20293,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2274 + "line": 2303 } }, { @@ -20037,7 +20311,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2275 + "line": 2304 } }, { @@ -20055,7 +20329,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2276 + "line": 2305 } }, { @@ -20073,7 +20347,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2277 + "line": 2306 } }, { @@ -20091,7 +20365,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2278 + "line": 2307 } }, { @@ -20109,7 +20383,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2279 + "line": 2308 } }, { @@ -20127,7 +20401,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2280 + "line": 2309 } }, { @@ -20145,7 +20419,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2281 + "line": 2310 } }, { @@ -20163,14 +20437,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2282 + "line": 2311 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2266 + "line": 2295 } }, { @@ -20195,7 +20469,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2287 + "line": 2316 } }, { @@ -20210,12 +20484,12 @@ } }, "comments": { - "attached": "// >= 1: Query in progress" + "attached": "// >= 1: Sub-query in progress" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2288 + "line": 2317 } }, { @@ -20230,111 +20504,71 @@ } }, "comments": { - "attached": "// Obtained result from DebugHookIdInfo()" + "attached": "// Sub-query obtained result from DebugHookIdInfo()" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2289 + "line": 2318 } }, { "name": "DataType", "is_array": false, - "width": 8, "is_anonymous": false, "type": { - "declaration": "ImGuiDataType", + "declaration": "ImS8", "description": { "kind": "User", - "name": "ImGuiDataType" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2290 - } - }, - { - "name": "Desc", - "is_array": true, - "array_bounds": "57", - "is_anonymous": false, - "type": { - "declaration": "char[57]", - "description": { - "kind": "Array", - "bounds": "57", - "inner_type": { - "kind": "Builtin", - "builtin_type": "char" - } + "name": "ImS8" } }, "comments": { - "attached": "// Arbitrarily sized buffer to hold a result (FIXME: could replace Results[] with a chunk stream?) FIXME: Now that we added CTRL+C this should be fixed." + "attached": "// ImGuiDataType" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2291 + "line": 2319 + } + }, + { + "name": "DescOffset", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// -1 or offset into parent's ResultsPathsBuf" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2320 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2285 + "line": 2314 } }, { - "name": "ImGuiIDStackTool", - "original_fully_qualified_name": "ImGuiIDStackTool", + "name": "ImGuiDebugItemPathQuery", + "original_fully_qualified_name": "ImGuiDebugItemPathQuery", "kind": "struct", "by_value": false, "forward_declaration": false, "is_anonymous": false, "fields": [ { - "name": "LastActiveFrame", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2299 - } - }, - { - "name": "StackLevel", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "comments": { - "attached": "// -1: query stack and resize Results, >= 0: individual stack level" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2300 - } - }, - { - "name": "QueryId", + "name": "MainID", "is_array": false, "is_anonymous": false, "type": { @@ -20345,12 +20579,72 @@ } }, "comments": { - "attached": "// ID to query details for" + "attached": "// ID to query details for." }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2301 + "line": 2327 + } + }, + { + "name": "Active", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// Used to disambiguate the case when ID == 0 and e.g. some code calls PushOverrideID(0)." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2328 + } + }, + { + "name": "Complete", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// All sub-queries are finished (some may have failed)." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2329 + } + }, + { + "name": "Step", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImS8", + "description": { + "kind": "User", + "name": "ImS8" + } + }, + "comments": { + "attached": "// -1: query stack + init Results, >= 0: filling individual stack level." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2330 } }, { @@ -20367,41 +20661,24 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2302 + "line": 2331 } }, { - "name": "CopyToClipboardOnCtrlC", + "name": "ResultsDescBuf", "is_array": false, "is_anonymous": false, "type": { - "declaration": "bool", + "declaration": "ImGuiTextBuffer", "description": { - "kind": "Builtin", - "builtin_type": "bool" + "kind": "User", + "name": "ImGuiTextBuffer" } }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2303 - } - }, - { - "name": "CopyToClipboardLastTime", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "float", - "description": { - "kind": "Builtin", - "builtin_type": "float" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2304 + "line": 2332 } }, { @@ -20418,7 +20695,90 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2305 + "line": 2333 + } + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2325 + } + }, + { + "name": "ImGuiIDStackTool", + "original_fully_qualified_name": "ImGuiIDStackTool", + "kind": "struct", + "by_value": false, + "forward_declaration": false, + "is_anonymous": false, + "fields": [ + { + "name": "OptHexEncodeNonAsciiChars", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2341 + } + }, + { + "name": "OptCopyToClipboardOnCtrlC", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2342 + } + }, + { + "name": "LastActiveFrame", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2343 + } + }, + { + "name": "CopyToClipboardLastTime", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2344 } } ], @@ -20430,7 +20790,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2297 + "line": 2339 } }, { @@ -20458,7 +20818,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2319 + "line": 2358 } }, { @@ -20475,7 +20835,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2320 + "line": 2359 } }, { @@ -20492,7 +20852,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2321 + "line": 2360 } }, { @@ -20509,7 +20869,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2322 + "line": 2361 } }, { @@ -20529,14 +20889,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2323 + "line": 2362 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2317 + "line": 2356 } }, { @@ -20561,383 +20921,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2334 - } - }, - { - "name": "IO", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiIO", - "description": { - "kind": "User", - "name": "ImGuiIO" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2335 - } - }, - { - "name": "PlatformIO", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiPlatformIO", - "description": { - "kind": "User", - "name": "ImGuiPlatformIO" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2336 - } - }, - { - "name": "Style", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiStyle", - "description": { - "kind": "User", - "name": "ImGuiStyle" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2337 - } - }, - { - "name": "ConfigFlagsCurrFrame", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiConfigFlags", - "description": { - "kind": "User", - "name": "ImGuiConfigFlags" - } - }, - "comments": { - "attached": "// = g.IO.ConfigFlags at the time of NewFrame()" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2338 - } - }, - { - "name": "ConfigFlagsLastFrame", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiConfigFlags", - "description": { - "kind": "User", - "name": "ImGuiConfigFlags" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2339 - } - }, - { - "name": "FontAtlases", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImVector_ImFontAtlasPtr", - "description": { - "kind": "User", - "name": "ImVector_ImFontAtlasPtr" - } - }, - "comments": { - "attached": "// List of font atlases used by the context (generally only contains g.IO.Fonts aka the main font atlas)" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2340 - } - }, - { - "name": "Font", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImFont*", - "description": { - "kind": "Pointer", - "inner_type": { - "kind": "User", - "name": "ImFont" - } - } - }, - "comments": { - "attached": "// Currently bound font. (== FontStack.back().Font)" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2341 - } - }, - { - "name": "FontBaked", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImFontBaked*", - "description": { - "kind": "Pointer", - "inner_type": { - "kind": "User", - "name": "ImFontBaked" - } - } - }, - "comments": { - "attached": "// Currently bound font at currently bound size. (== Font->GetFontBaked(FontSize))" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2342 - } - }, - { - "name": "FontSize", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "float", - "description": { - "kind": "Builtin", - "builtin_type": "float" - } - }, - "comments": { - "attached": "// Currently bound font size == line height (== FontSizeBase + externals scales applied in the UpdateCurrentFontSize() function)." - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2343 - } - }, - { - "name": "FontSizeBase", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "float", - "description": { - "kind": "Builtin", - "builtin_type": "float" - } - }, - "comments": { - "attached": "// Font size before scaling == style.FontSizeBase == value passed to PushFont() when specified." - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2344 - } - }, - { - "name": "FontBakedScale", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "float", - "description": { - "kind": "Builtin", - "builtin_type": "float" - } - }, - "comments": { - "attached": "// == FontBaked->Size / FontSize. Scale factor over baked size. Rarely used nowadays, very often == 1.0f." - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2345 - } - }, - { - "name": "FontRasterizerDensity", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "float", - "description": { - "kind": "Builtin", - "builtin_type": "float" - } - }, - "comments": { - "attached": "// Current font density. Used by all calls to GetFontBaked()." - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2346 - } - }, - { - "name": "CurrentDpiScale", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "float", - "description": { - "kind": "Builtin", - "builtin_type": "float" - } - }, - "comments": { - "attached": "// Current window/viewport DpiScale == CurrentViewport->DpiScale" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2347 - } - }, - { - "name": "DrawListSharedData", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImDrawListSharedData", - "description": { - "kind": "User", - "name": "ImDrawListSharedData" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2348 - } - }, - { - "name": "Time", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "double", - "description": { - "kind": "Builtin", - "builtin_type": "double" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2349 - } - }, - { - "name": "FrameCount", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2350 - } - }, - { - "name": "FrameCountEnded", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2351 - } - }, - { - "name": "FrameCountPlatformEnded", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2352 - } - }, - { - "name": "FrameCountRendered", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2353 - } - }, - { - "name": "WithinEndChildID", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiID", - "description": { - "kind": "User", - "name": "ImGuiID" - } - }, - "comments": { - "attached": "// Set within EndChild()" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2354 + "line": 2373 } }, { @@ -20957,7 +20941,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2355 + "line": 2374 } }, { @@ -20977,27 +20961,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2356 - } - }, - { - "name": "GcCompactAll", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "bool", - "description": { - "kind": "Builtin", - "builtin_type": "bool" - } - }, - "comments": { - "attached": "// Request full GC" - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2357 + "line": 2375 } }, { @@ -21017,30 +20981,92 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2358 + "line": 2376 } }, { - "name": "TestEngine", + "name": "FrameCount", "is_array": false, "is_anonymous": false, "type": { - "declaration": "void*", + "declaration": "int", "description": { - "kind": "Pointer", - "inner_type": { - "kind": "Builtin", - "builtin_type": "void" - } + "kind": "Builtin", + "builtin_type": "int" } }, - "comments": { - "attached": "// Test engine user data" - }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2359 + "line": 2377 + } + }, + { + "name": "FrameCountEnded", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2378 + } + }, + { + "name": "FrameCountPlatformEnded", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2379 + } + }, + { + "name": "FrameCountRendered", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2380 + } + }, + { + "name": "Time", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "double", + "description": { + "kind": "Builtin", + "builtin_type": "double" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2381 } }, { @@ -21065,7 +21091,321 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2360 + "line": 2382 + } + }, + { + "name": "IO", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiIO", + "description": { + "kind": "User", + "name": "ImGuiIO" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2383 + } + }, + { + "name": "PlatformIO", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiPlatformIO", + "description": { + "kind": "User", + "name": "ImGuiPlatformIO" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2384 + } + }, + { + "name": "Style", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiStyle", + "description": { + "kind": "User", + "name": "ImGuiStyle" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2385 + } + }, + { + "name": "ConfigFlagsCurrFrame", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiConfigFlags", + "description": { + "kind": "User", + "name": "ImGuiConfigFlags" + } + }, + "comments": { + "attached": "// = g.IO.ConfigFlags at the time of NewFrame()" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2386 + } + }, + { + "name": "ConfigFlagsLastFrame", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiConfigFlags", + "description": { + "kind": "User", + "name": "ImGuiConfigFlags" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2387 + } + }, + { + "name": "FontAtlases", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImVector_ImFontAtlasPtr", + "description": { + "kind": "User", + "name": "ImVector_ImFontAtlasPtr" + } + }, + "comments": { + "attached": "// List of font atlases used by the context (generally only contains g.IO.Fonts aka the main font atlas)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2388 + } + }, + { + "name": "Font", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImFont*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFont" + } + } + }, + "comments": { + "attached": "// Currently bound font. (== FontStack.back().Font)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2389 + } + }, + { + "name": "FontBaked", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImFontBaked*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFontBaked" + } + } + }, + "comments": { + "attached": "// Currently bound font at currently bound size. (== Font->GetFontBaked(FontSize))" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2390 + } + }, + { + "name": "FontSize", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Currently bound font size == line height (== FontSizeBase + externals scales applied in the UpdateCurrentFontSize() function)." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2391 + } + }, + { + "name": "FontSizeBase", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Font size before scaling == style.FontSizeBase == value passed to PushFont() when specified." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2392 + } + }, + { + "name": "FontBakedScale", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// == FontBaked->Size / FontSize. Scale factor over baked size. Rarely used nowadays, very often == 1.0f." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2393 + } + }, + { + "name": "FontRasterizerDensity", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Current font density. Used by all calls to GetFontBaked()." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2394 + } + }, + { + "name": "CurrentDpiScale", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Current window/viewport DpiScale == CurrentViewport->DpiScale" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2395 + } + }, + { + "name": "DrawListSharedData", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImDrawListSharedData", + "description": { + "kind": "User", + "name": "ImDrawListSharedData" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2396 + } + }, + { + "name": "WithinEndChildID", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiID", + "description": { + "kind": "User", + "name": "ImGuiID" + } + }, + "comments": { + "attached": "// Set within EndChild()" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2397 + } + }, + { + "name": "TestEngine", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "void*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "void" + } + } + }, + "comments": { + "attached": "// Test engine user data" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2398 } }, { @@ -21088,7 +21428,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2363 + "line": 2401 } }, { @@ -21108,7 +21448,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2364 + "line": 2402 } }, { @@ -21125,7 +21465,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2365 + "line": 2403 } }, { @@ -21142,7 +21482,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2366 + "line": 2404 } }, { @@ -21165,7 +21505,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2369 + "line": 2407 } }, { @@ -21185,7 +21525,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2370 + "line": 2408 } }, { @@ -21205,7 +21545,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2371 + "line": 2409 } }, { @@ -21222,7 +21562,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2372 + "line": 2410 } }, { @@ -21242,7 +21582,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2373 + "line": 2411 } }, { @@ -21262,7 +21602,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2374 + "line": 2412 } }, { @@ -21282,7 +21622,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2375 + "line": 2413 } }, { @@ -21302,7 +21642,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2376 + "line": 2414 } }, { @@ -21325,7 +21665,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2377 + "line": 2415 } }, { @@ -21348,7 +21688,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2378 + "line": 2416 } }, { @@ -21371,7 +21711,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2379 + "line": 2417 } }, { @@ -21394,7 +21734,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2380 + "line": 2418 } }, { @@ -21417,7 +21757,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2381 + "line": 2419 } }, { @@ -21440,7 +21780,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2382 + "line": 2420 } }, { @@ -21457,7 +21797,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2383 + "line": 2421 } }, { @@ -21477,7 +21817,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2384 + "line": 2422 } }, { @@ -21494,7 +21834,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2385 + "line": 2423 } }, { @@ -21511,7 +21851,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2386 + "line": 2424 } }, { @@ -21528,7 +21868,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2387 + "line": 2425 } }, { @@ -21545,7 +21885,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2388 + "line": 2426 } }, { @@ -21568,11 +21908,11 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2391 + "line": 2429 } }, { - "name": "DebugHookIdInfo", + "name": "DebugHookIdInfoId", "is_array": false, "is_anonymous": false, "type": { @@ -21588,7 +21928,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2392 + "line": 2430 } }, { @@ -21608,7 +21948,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2393 + "line": 2431 } }, { @@ -21625,7 +21965,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2394 + "line": 2432 } }, { @@ -21645,7 +21985,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2395 + "line": 2433 } }, { @@ -21665,7 +22005,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2396 + "line": 2434 } }, { @@ -21685,7 +22025,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2397 + "line": 2435 } }, { @@ -21702,7 +22042,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2398 + "line": 2436 } }, { @@ -21722,7 +22062,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2399 + "line": 2437 } }, { @@ -21742,7 +22082,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2400 + "line": 2438 } }, { @@ -21762,7 +22102,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2401 + "line": 2439 } }, { @@ -21782,7 +22122,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2402 + "line": 2440 } }, { @@ -21799,7 +22139,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2403 + "line": 2441 } }, { @@ -21819,7 +22159,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2404 + "line": 2442 } }, { @@ -21839,7 +22179,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2405 + "line": 2443 } }, { @@ -21859,7 +22199,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2406 + "line": 2444 } }, { @@ -21879,7 +22219,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2407 + "line": 2445 } }, { @@ -21899,7 +22239,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2408 + "line": 2446 } }, { @@ -21916,7 +22256,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2409 + "line": 2447 } }, { @@ -21933,7 +22273,24 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2410 + "line": 2448 + } + }, + { + "name": "ActiveIdMouseButton", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImS8", + "description": { + "kind": "User", + "name": "ImS8" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2449 } }, { @@ -21953,25 +22310,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2411 - } - }, - { - "name": "ActiveIdMouseButton", - "is_array": false, - "width": 8, - "is_anonymous": false, - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2412 + "line": 2450 } }, { @@ -21991,27 +22330,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2413 - } - }, - { - "name": "ActiveIdWindow", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImGuiWindow*", - "description": { - "kind": "Pointer", - "inner_type": { - "kind": "User", - "name": "ImGuiWindow" - } - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2414 + "line": 2451 } }, { @@ -22031,7 +22350,27 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2415 + "line": 2452 + } + }, + { + "name": "ActiveIdWindow", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiWindow*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiWindow" + } + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2453 } }, { @@ -22048,7 +22387,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2416 + "line": 2454 } }, { @@ -22065,7 +22404,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2417 + "line": 2455 } }, { @@ -22085,7 +22424,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2418 + "line": 2456 } }, { @@ -22105,7 +22444,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2419 + "line": 2457 } }, { @@ -22125,7 +22464,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2420 + "line": 2458 } }, { @@ -22151,7 +22490,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2426 + "line": 2464 } }, { @@ -22171,7 +22510,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2427 + "line": 2465 } }, { @@ -22191,7 +22530,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2428 + "line": 2466 } }, { @@ -22211,7 +22550,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2429 + "line": 2467 } }, { @@ -22233,7 +22572,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2430 + "line": 2468 } }, { @@ -22250,7 +22589,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2431 + "line": 2469 } }, { @@ -22270,7 +22609,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2432 + "line": 2470 } }, { @@ -22290,7 +22629,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2433 + "line": 2471 } }, { @@ -22310,7 +22649,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2434 + "line": 2472 } }, { @@ -22333,7 +22672,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2438 + "line": 2476 } }, { @@ -22353,7 +22692,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2439 + "line": 2477 } }, { @@ -22373,7 +22712,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2440 + "line": 2478 } }, { @@ -22393,7 +22732,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2441 + "line": 2479 } }, { @@ -22413,7 +22752,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2442 + "line": 2480 } }, { @@ -22433,7 +22772,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2443 + "line": 2481 } }, { @@ -22450,7 +22789,27 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2444 + "line": 2482 + } + }, + { + "name": "GcCompactAll", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// Request full GC" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2483 } }, { @@ -22473,7 +22832,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2447 + "line": 2486 } }, { @@ -22493,7 +22852,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2448 + "line": 2487 } }, { @@ -22513,7 +22872,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2449 + "line": 2488 } }, { @@ -22533,7 +22892,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2450 + "line": 2489 } }, { @@ -22553,7 +22912,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2451 + "line": 2490 } }, { @@ -22573,7 +22932,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2452 + "line": 2491 } }, { @@ -22593,7 +22952,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2453 + "line": 2492 } }, { @@ -22613,7 +22972,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2454 + "line": 2493 } }, { @@ -22633,7 +22992,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2455 + "line": 2494 } }, { @@ -22653,7 +23012,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2456 + "line": 2495 } }, { @@ -22676,7 +23035,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2459 + "line": 2498 } }, { @@ -22699,7 +23058,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2460 + "line": 2499 } }, { @@ -22719,7 +23078,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2461 + "line": 2500 } }, { @@ -22742,7 +23101,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2462 + "line": 2501 } }, { @@ -22759,7 +23118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2463 + "line": 2502 } }, { @@ -22779,7 +23138,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2464 + "line": 2503 } }, { @@ -22799,7 +23158,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2465 + "line": 2504 } }, { @@ -22819,7 +23178,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2466 + "line": 2505 } }, { @@ -22839,7 +23198,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2467 + "line": 2506 } }, { @@ -22859,7 +23218,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2468 + "line": 2507 } }, { @@ -22882,7 +23241,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2471 + "line": 2510 } }, { @@ -22902,7 +23261,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2472 + "line": 2511 } }, { @@ -22926,7 +23285,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2475 + "line": 2514 } }, { @@ -22946,7 +23305,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2476 + "line": 2515 } }, { @@ -22966,7 +23325,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2477 + "line": 2516 } }, { @@ -22989,7 +23348,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2478 + "line": 2517 } }, { @@ -23009,7 +23368,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2479 + "line": 2518 } }, { @@ -23029,7 +23388,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2480 + "line": 2519 } }, { @@ -23049,7 +23408,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2481 + "line": 2520 } }, { @@ -23069,7 +23428,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2482 + "line": 2521 } }, { @@ -23089,7 +23448,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2483 + "line": 2522 } }, { @@ -23106,7 +23465,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2484 + "line": 2523 } }, { @@ -23126,7 +23485,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2485 + "line": 2524 } }, { @@ -23143,7 +23502,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2486 + "line": 2525 } }, { @@ -23160,7 +23519,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2487 + "line": 2526 } }, { @@ -23180,7 +23539,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2488 + "line": 2527 } }, { @@ -23197,7 +23556,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2489 + "line": 2528 } }, { @@ -23212,12 +23571,12 @@ } }, "comments": { - "attached": "// Keyboard or Gamepad mode? THIS CAN ONLY BE ImGuiInputSource_Keyboard or ImGuiInputSource_Mouse" + "attached": "// Keyboard or Gamepad mode? THIS CAN ONLY BE ImGuiInputSource_Keyboard or ImGuiInputSource_Gamepad" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2490 + "line": 2529 } }, { @@ -23237,7 +23596,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2491 + "line": 2530 } }, { @@ -23254,7 +23613,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2492 + "line": 2531 } }, { @@ -23277,7 +23636,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2496 + "line": 2535 } }, { @@ -23297,7 +23656,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2497 + "line": 2536 } }, { @@ -23314,7 +23673,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2498 + "line": 2537 } }, { @@ -23334,7 +23693,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2499 + "line": 2538 } }, { @@ -23354,7 +23713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2500 + "line": 2539 } }, { @@ -23374,7 +23733,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2501 + "line": 2540 } }, { @@ -23391,7 +23750,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2502 + "line": 2541 } }, { @@ -23408,7 +23767,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2503 + "line": 2542 } }, { @@ -23425,7 +23784,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2504 + "line": 2543 } }, { @@ -23442,7 +23801,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2505 + "line": 2544 } }, { @@ -23462,7 +23821,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2506 + "line": 2545 } }, { @@ -23479,7 +23838,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2507 + "line": 2546 } }, { @@ -23499,7 +23858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2508 + "line": 2547 } }, { @@ -23519,7 +23878,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2509 + "line": 2548 } }, { @@ -23539,7 +23898,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2510 + "line": 2549 } }, { @@ -23559,7 +23918,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2511 + "line": 2550 } }, { @@ -23579,7 +23938,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2512 + "line": 2551 } }, { @@ -23599,7 +23958,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2513 + "line": 2552 } }, { @@ -23619,7 +23978,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2514 + "line": 2553 } }, { @@ -23639,7 +23998,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2515 + "line": 2554 } }, { @@ -23659,7 +24018,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2516 + "line": 2555 } }, { @@ -23679,7 +24038,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2517 + "line": 2556 } }, { @@ -23702,7 +24061,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2520 + "line": 2559 } }, { @@ -23722,7 +24081,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2521 + "line": 2560 } }, { @@ -23742,7 +24101,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2522 + "line": 2561 } }, { @@ -23759,7 +24118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2523 + "line": 2562 } }, { @@ -23779,7 +24138,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2524 + "line": 2563 } }, { @@ -23799,7 +24158,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2525 + "line": 2564 } }, { @@ -23815,14 +24174,14 @@ }, "comments": { "preceding": [ - "// Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize)" + "// Navigation: Windowing (Ctrl+Tab for list, or Menu button + keys or directional pads to move/resize)" ], - "attached": "// = true. Enable CTRL+TAB by holding ImGuiKey_GamepadFaceLeft (== ImGuiKey_NavGamepadMenu). When false, the button may still be used to toggle Menu layer." + "attached": "// = true. Enable Ctrl+Tab by holding ImGuiKey_GamepadFaceLeft (== ImGuiKey_NavGamepadMenu). When false, the button may still be used to toggle Menu layer." }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2528 + "line": 2567 } }, { @@ -23842,7 +24201,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2529 + "line": 2568 } }, { @@ -23862,7 +24221,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2530 + "line": 2569 } }, { @@ -23880,12 +24239,12 @@ } }, "comments": { - "attached": "// Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most!" + "attached": "// Target window when doing Ctrl+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most!" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2531 + "line": 2570 } }, { @@ -23908,7 +24267,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2532 + "line": 2571 } }, { @@ -23926,12 +24285,12 @@ } }, "comments": { - "attached": "// Internal window actually listing the CTRL+Tab contents" + "attached": "// Internal window actually listing the Ctrl+Tab contents" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2533 + "line": 2572 } }, { @@ -23948,7 +24307,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2534 + "line": 2573 } }, { @@ -23965,7 +24324,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2535 + "line": 2574 } }, { @@ -23982,7 +24341,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2536 + "line": 2575 } }, { @@ -24002,7 +24361,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2537 + "line": 2576 } }, { @@ -24022,7 +24381,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2538 + "line": 2577 } }, { @@ -24039,7 +24398,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2539 + "line": 2578 } }, { @@ -24056,7 +24415,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2540 + "line": 2579 } }, { @@ -24074,12 +24433,12 @@ "preceding": [ "// Render" ], - "attached": "// 0.0..1.0 animation when fading in a dimming background (for modal window and CTRL+TAB list)" + "attached": "// 0.0..1.0 animation when fading in a dimming background (for modal window and Ctrl+Tab list)" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2543 + "line": 2582 } }, { @@ -24101,7 +24460,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2546 + "line": 2585 } }, { @@ -24121,7 +24480,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2547 + "line": 2586 } }, { @@ -24141,7 +24500,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2548 + "line": 2587 } }, { @@ -24158,7 +24517,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2549 + "line": 2588 } }, { @@ -24175,7 +24534,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2550 + "line": 2589 } }, { @@ -24192,7 +24551,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2551 + "line": 2590 } }, { @@ -24209,7 +24568,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2552 + "line": 2591 } }, { @@ -24229,7 +24588,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2553 + "line": 2592 } }, { @@ -24249,7 +24608,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2554 + "line": 2593 } }, { @@ -24266,11 +24625,28 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2555 + "line": 2594 } }, { - "name": "DragDropAcceptFlags", + "name": "DragDropTargetFullViewport", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiID", + "description": { + "kind": "User", + "name": "ImGuiID" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2595 + } + }, + { + "name": "DragDropAcceptFlagsCurr", "is_array": false, "is_anonymous": false, "type": { @@ -24283,7 +24659,24 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2556 + "line": 2596 + } + }, + { + "name": "DragDropAcceptFlagsPrev", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiDragDropFlags", + "description": { + "kind": "User", + "name": "ImGuiDragDropFlags" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2597 } }, { @@ -24303,7 +24696,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2557 + "line": 2598 } }, { @@ -24323,7 +24716,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2558 + "line": 2599 } }, { @@ -24343,7 +24736,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2559 + "line": 2600 } }, { @@ -24363,7 +24756,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2560 + "line": 2601 } }, { @@ -24383,7 +24776,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2561 + "line": 2602 } }, { @@ -24403,7 +24796,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2562 + "line": 2603 } }, { @@ -24428,7 +24821,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2563 + "line": 2604 } }, { @@ -24450,7 +24843,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2566 + "line": 2607 } }, { @@ -24467,7 +24860,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2567 + "line": 2608 } }, { @@ -24492,7 +24885,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2570 + "line": 2611 } }, { @@ -24512,7 +24905,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2571 + "line": 2612 } }, { @@ -24532,7 +24925,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2572 + "line": 2613 } }, { @@ -24552,7 +24945,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2573 + "line": 2614 } }, { @@ -24572,7 +24965,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2574 + "line": 2615 } }, { @@ -24592,7 +24985,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2575 + "line": 2616 } }, { @@ -24609,7 +25002,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2576 + "line": 2617 } }, { @@ -24634,7 +25027,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2579 + "line": 2620 } }, { @@ -24651,7 +25044,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2580 + "line": 2621 } }, { @@ -24668,7 +25061,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2581 + "line": 2622 } }, { @@ -24685,7 +25078,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2582 + "line": 2623 } }, { @@ -24707,7 +25100,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2585 + "line": 2626 } }, { @@ -24727,7 +25120,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2586 + "line": 2627 } }, { @@ -24747,7 +25140,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2587 + "line": 2628 } }, { @@ -24764,7 +25157,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2588 + "line": 2629 } }, { @@ -24781,7 +25174,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2589 + "line": 2630 } }, { @@ -24803,7 +25196,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2592 + "line": 2633 } }, { @@ -24820,7 +25213,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2593 + "line": 2634 } }, { @@ -24840,7 +25233,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2594 + "line": 2635 } }, { @@ -24860,7 +25253,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2595 + "line": 2636 } }, { @@ -24880,7 +25273,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2596 + "line": 2637 } }, { @@ -24900,7 +25293,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2597 + "line": 2638 } }, { @@ -24922,7 +25315,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2600 + "line": 2641 } }, { @@ -24942,7 +25335,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2601 + "line": 2642 } }, { @@ -24959,7 +25352,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2602 + "line": 2643 } }, { @@ -24981,7 +25374,27 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2605 + "line": 2646 + } + }, + { + "name": "InputTextLineIndex", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiTextIndex", + "description": { + "kind": "User", + "name": "ImGuiTextIndex" + } + }, + "comments": { + "attached": "// Temporary storage" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2647 } }, { @@ -24998,7 +25411,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2606 + "line": 2648 } }, { @@ -25015,7 +25428,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2607 + "line": 2649 } }, { @@ -25032,7 +25445,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2608 + "line": 2650 } }, { @@ -25047,12 +25460,12 @@ } }, "comments": { - "attached": "// Temporary text input when CTRL+clicking on a slider, etc." + "attached": "// Temporary text input when using Ctrl+Click on a slider, etc." }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2609 + "line": 2651 } }, { @@ -25072,7 +25485,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2610 + "line": 2652 } }, { @@ -25089,7 +25502,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2611 + "line": 2653 } }, { @@ -25106,7 +25519,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2612 + "line": 2654 } }, { @@ -25126,7 +25539,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2613 + "line": 2655 } }, { @@ -25146,7 +25559,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2614 + "line": 2656 } }, { @@ -25166,7 +25579,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2615 + "line": 2657 } }, { @@ -25186,7 +25599,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2616 + "line": 2658 } }, { @@ -25206,7 +25619,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2617 + "line": 2659 } }, { @@ -25226,7 +25639,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2618 + "line": 2660 } }, { @@ -25246,7 +25659,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2619 + "line": 2661 } }, { @@ -25263,7 +25676,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2620 + "line": 2662 } }, { @@ -25283,7 +25696,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2621 + "line": 2663 } }, { @@ -25300,7 +25713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2622 + "line": 2664 } }, { @@ -25320,7 +25733,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2623 + "line": 2665 } }, { @@ -25340,7 +25753,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2624 + "line": 2666 } }, { @@ -25357,7 +25770,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2625 + "line": 2667 } }, { @@ -25377,7 +25790,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2626 + "line": 2668 } }, { @@ -25397,7 +25810,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2627 + "line": 2669 } }, { @@ -25414,7 +25827,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2628 + "line": 2670 } }, { @@ -25434,7 +25847,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2629 + "line": 2671 } }, { @@ -25454,7 +25867,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2630 + "line": 2672 } }, { @@ -25474,7 +25887,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2631 + "line": 2673 } }, { @@ -25491,7 +25904,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2632 + "line": 2674 } }, { @@ -25508,7 +25921,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2633 + "line": 2675 } }, { @@ -25531,7 +25944,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2634 + "line": 2676 } }, { @@ -25551,7 +25964,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2635 + "line": 2677 } }, { @@ -25571,7 +25984,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2636 + "line": 2678 } }, { @@ -25591,7 +26004,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2637 + "line": 2679 } }, { @@ -25614,7 +26027,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2640 + "line": 2682 } }, { @@ -25634,7 +26047,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2641 + "line": 2683 } }, { @@ -25658,7 +26071,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2645 + "line": 2687 } }, { @@ -25675,7 +26088,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2646 + "line": 2688 } }, { @@ -25818,7 +26231,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2650 + "line": 2692 } }, { @@ -25838,7 +26251,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2651 + "line": 2693 } }, { @@ -25858,7 +26271,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2652 + "line": 2694 } }, { @@ -25878,7 +26291,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2653 + "line": 2695 } }, { @@ -25898,7 +26311,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2654 + "line": 2696 } }, { @@ -25918,7 +26331,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2655 + "line": 2697 } }, { @@ -25938,7 +26351,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2656 + "line": 2698 } }, { @@ -25958,7 +26371,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2657 + "line": 2699 } }, { @@ -25991,7 +26404,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2660 + "line": 2702 } }, { @@ -26014,7 +26427,24 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2663 + "line": 2705 + } + }, + { + "name": "LogLineFirstItem", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2706 } }, { @@ -26034,7 +26464,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2664 + "line": 2707 } }, { @@ -26054,7 +26484,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2665 + "line": 2708 } }, { @@ -26074,7 +26504,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2666 + "line": 2709 } }, { @@ -26094,7 +26524,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2667 + "line": 2710 } }, { @@ -26114,10 +26544,13 @@ } } }, + "comments": { + "attached": "// See comment in LogSetNextTextDecoration(): doesn't copy underlying data, use carefully!" + }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2668 + "line": 2711 } }, { @@ -26140,7 +26573,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2669 + "line": 2712 } }, { @@ -26157,24 +26590,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2670 - } - }, - { - "name": "LogLineFirstItem", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "bool", - "description": { - "kind": "Builtin", - "builtin_type": "bool" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2671 + "line": 2713 } }, { @@ -26191,7 +26607,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2672 + "line": 2714 } }, { @@ -26208,7 +26624,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2673 + "line": 2715 } }, { @@ -26228,7 +26644,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2674 + "line": 2716 } }, { @@ -26251,7 +26667,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2677 + "line": 2719 } }, { @@ -26274,7 +26690,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2678 + "line": 2720 } }, { @@ -26291,7 +26707,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2679 + "line": 2721 } }, { @@ -26308,7 +26724,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2680 + "line": 2722 } }, { @@ -26328,7 +26744,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2681 + "line": 2723 } }, { @@ -26348,7 +26764,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2682 + "line": 2724 } }, { @@ -26371,7 +26787,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2683 + "line": 2725 } }, { @@ -26390,12 +26806,12 @@ "// Debug Tools", "// (some of the highly frequently used data are interleaved in other structures above: DebugBreakXXX fields, DebugHookIdInfo, DebugLocateId etc.)" ], - "attached": "// Locked count (preserved when holding CTRL)" + "attached": "// Locked count (preserved when holding Ctrl)" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2687 + "line": 2729 } }, { @@ -26412,7 +26828,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2688 + "line": 2730 } }, { @@ -26429,7 +26845,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2689 + "line": 2731 } }, { @@ -26446,7 +26862,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2690 + "line": 2732 } }, { @@ -26463,7 +26879,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2691 + "line": 2733 } }, { @@ -26480,7 +26896,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2692 + "line": 2734 } }, { @@ -26497,7 +26913,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2693 + "line": 2735 } }, { @@ -26517,7 +26933,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2694 + "line": 2736 } }, { @@ -26537,7 +26953,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2695 + "line": 2737 } }, { @@ -26557,7 +26973,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2696 + "line": 2738 } }, { @@ -26577,7 +26993,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2697 + "line": 2739 } }, { @@ -26597,7 +27013,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2698 + "line": 2740 } }, { @@ -26614,7 +27030,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2699 + "line": 2741 } }, { @@ -26634,7 +27050,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2700 + "line": 2742 } }, { @@ -26651,7 +27067,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2701 + "line": 2743 } }, { @@ -26668,7 +27084,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2702 + "line": 2744 } }, { @@ -26685,7 +27101,24 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2703 + "line": 2745 + } + }, + { + "name": "DebugItemPathQuery", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiDebugItemPathQuery", + "description": { + "kind": "User", + "name": "ImGuiDebugItemPathQuery" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2746 } }, { @@ -26702,7 +27135,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2704 + "line": 2747 } }, { @@ -26719,7 +27152,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2705 + "line": 2748 } }, { @@ -26742,7 +27175,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2706 + "line": 2749 } }, { @@ -26765,7 +27198,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2708 + "line": 2751 } }, { @@ -26788,7 +27221,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2709 + "line": 2752 } }, { @@ -26816,7 +27249,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2713 + "line": 2756 } }, { @@ -26833,7 +27266,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2714 + "line": 2757 } }, { @@ -26850,7 +27283,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2715 + "line": 2758 } }, { @@ -26867,7 +27300,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2716 + "line": 2759 } }, { @@ -26887,7 +27320,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2717 + "line": 2760 } }, { @@ -26907,7 +27340,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2718 + "line": 2761 } }, { @@ -26927,7 +27360,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2719 + "line": 2762 } }, { @@ -26947,7 +27380,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2720 + "line": 2763 } }, { @@ -26969,14 +27402,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2721 + "line": 2764 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2332 + "line": 2371 } }, { @@ -27007,7 +27440,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2736 + "line": 2780 } }, { @@ -27024,7 +27457,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2737 + "line": 2781 } }, { @@ -27044,7 +27477,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2738 + "line": 2782 } }, { @@ -27064,7 +27497,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2739 + "line": 2783 } }, { @@ -27084,7 +27517,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2740 + "line": 2784 } }, { @@ -27101,7 +27534,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2741 + "line": 2785 } }, { @@ -27118,7 +27551,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2742 + "line": 2786 } }, { @@ -27138,7 +27571,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2743 + "line": 2787 } }, { @@ -27155,7 +27588,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2744 + "line": 2788 } }, { @@ -27172,7 +27605,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2745 + "line": 2789 } }, { @@ -27189,7 +27622,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2746 + "line": 2790 } }, { @@ -27209,7 +27642,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2747 + "line": 2791 } }, { @@ -27229,7 +27662,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2748 + "line": 2792 } }, { @@ -27246,7 +27679,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2749 + "line": 2793 } }, { @@ -27266,7 +27699,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2750 + "line": 2794 } }, { @@ -27289,7 +27722,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2753 + "line": 2797 } }, { @@ -27309,7 +27742,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2754 + "line": 2798 } }, { @@ -27329,7 +27762,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2755 + "line": 2799 } }, { @@ -27349,7 +27782,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2756 + "line": 2800 } }, { @@ -27366,7 +27799,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2757 + "line": 2801 } }, { @@ -27386,7 +27819,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2758 + "line": 2802 } }, { @@ -27409,7 +27842,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2761 + "line": 2805 } }, { @@ -27429,7 +27862,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2762 + "line": 2806 } }, { @@ -27449,7 +27882,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2763 + "line": 2807 } }, { @@ -27469,7 +27902,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2764 + "line": 2808 } }, { @@ -27489,7 +27922,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2765 + "line": 2809 } }, { @@ -27509,7 +27942,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2766 + "line": 2810 } }, { @@ -27526,7 +27959,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2767 + "line": 2811 } }, { @@ -27549,7 +27982,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2768 + "line": 2812 } }, { @@ -27572,7 +28005,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2769 + "line": 2813 } }, { @@ -27592,7 +28025,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2770 + "line": 2814 } }, { @@ -27609,7 +28042,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2771 + "line": 2815 } }, { @@ -27629,7 +28062,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2772 + "line": 2816 } }, { @@ -27646,7 +28079,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2773 + "line": 2817 } }, { @@ -27668,7 +28101,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2776 + "line": 2820 } }, { @@ -27685,7 +28118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2777 + "line": 2821 } }, { @@ -27702,7 +28135,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2778 + "line": 2822 } }, { @@ -27719,7 +28152,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2779 + "line": 2823 } }, { @@ -27743,7 +28176,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2783 + "line": 2827 } }, { @@ -27763,7 +28196,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2784 + "line": 2828 } }, { @@ -27783,7 +28216,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2785 + "line": 2829 } }, { @@ -27803,7 +28236,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2786 + "line": 2830 } } ], @@ -27817,7 +28250,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2733 + "line": 2777 } }, { @@ -27848,7 +28281,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2792 + "line": 2836 } }, { @@ -27871,7 +28304,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2793 + "line": 2837 } }, { @@ -27891,7 +28324,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2794 + "line": 2838 } }, { @@ -27911,7 +28344,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2795 + "line": 2839 } }, { @@ -27931,7 +28364,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2795 + "line": 2839 } }, { @@ -27951,7 +28384,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2796 + "line": 2840 } }, { @@ -27971,7 +28404,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2797 + "line": 2841 } }, { @@ -27994,7 +28427,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2798 + "line": 2842 } }, { @@ -28014,7 +28447,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2799 + "line": 2843 } }, { @@ -28034,7 +28467,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2800 + "line": 2844 } }, { @@ -28054,7 +28487,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2801 + "line": 2845 } }, { @@ -28074,7 +28507,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2802 + "line": 2846 } }, { @@ -28094,7 +28527,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2803 + "line": 2847 } }, { @@ -28114,7 +28547,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2804 + "line": 2848 } }, { @@ -28134,7 +28567,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2805 + "line": 2849 } }, { @@ -28151,7 +28584,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2806 + "line": 2850 } }, { @@ -28171,7 +28604,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2807 + "line": 2851 } }, { @@ -28191,7 +28624,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2808 + "line": 2852 } }, { @@ -28211,7 +28644,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2809 + "line": 2853 } }, { @@ -28231,7 +28664,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2810 + "line": 2854 } }, { @@ -28251,7 +28684,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2811 + "line": 2855 } }, { @@ -28271,7 +28704,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2811 + "line": 2855 } }, { @@ -28291,7 +28724,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2812 + "line": 2856 } }, { @@ -28311,7 +28744,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2812 + "line": 2856 } }, { @@ -28331,7 +28764,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2813 + "line": 2857 } }, { @@ -28351,7 +28784,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2813 + "line": 2857 } }, { @@ -28371,7 +28804,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2814 + "line": 2858 } }, { @@ -28391,7 +28824,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2814 + "line": 2858 } }, { @@ -28411,7 +28844,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2815 + "line": 2859 } }, { @@ -28431,7 +28864,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2816 + "line": 2860 } }, { @@ -28451,7 +28884,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2817 + "line": 2861 } }, { @@ -28471,7 +28904,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2818 + "line": 2862 } }, { @@ -28491,7 +28924,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2819 + "line": 2863 } }, { @@ -28508,7 +28941,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2820 + "line": 2864 } }, { @@ -28525,7 +28958,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2821 + "line": 2865 } }, { @@ -28545,7 +28978,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2822 + "line": 2866 } }, { @@ -28565,7 +28998,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2823 + "line": 2867 } }, { @@ -28585,7 +29018,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2824 + "line": 2868 } }, { @@ -28605,7 +29038,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2825 + "line": 2869 } }, { @@ -28625,7 +29058,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2826 + "line": 2870 } }, { @@ -28645,7 +29078,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2826 + "line": 2870 } }, { @@ -28665,7 +29098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2827 + "line": 2871 } }, { @@ -28685,7 +29118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2828 + "line": 2872 } }, { @@ -28702,7 +29135,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2829 + "line": 2873 } }, { @@ -28722,7 +29155,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2830 + "line": 2874 } }, { @@ -28739,7 +29172,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2831 + "line": 2875 } }, { @@ -28759,7 +29192,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2832 + "line": 2876 } }, { @@ -28779,7 +29212,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2833 + "line": 2877 } }, { @@ -28796,7 +29229,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2834 + "line": 2878 } }, { @@ -28816,7 +29249,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2835 + "line": 2879 } }, { @@ -28836,7 +29269,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2836 + "line": 2880 } }, { @@ -28856,7 +29289,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2837 + "line": 2881 } }, { @@ -28876,7 +29309,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2838 + "line": 2882 } }, { @@ -28896,7 +29329,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2839 + "line": 2883 } }, { @@ -28916,7 +29349,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2840 + "line": 2884 } }, { @@ -28936,7 +29369,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2841 + "line": 2885 } }, { @@ -28956,7 +29389,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2842 + "line": 2886 } }, { @@ -28976,7 +29409,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2843 + "line": 2887 } }, { @@ -28996,7 +29429,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2844 + "line": 2888 } }, { @@ -29016,7 +29449,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2845 + "line": 2889 } }, { @@ -29036,7 +29469,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2846 + "line": 2890 } }, { @@ -29056,7 +29489,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2847 + "line": 2891 } }, { @@ -29076,58 +29509,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2848 - } - }, - { - "name": "AutoFitFramesX", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImS8", - "description": { - "kind": "User", - "name": "ImS8" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2849 - } - }, - { - "name": "AutoFitFramesY", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "ImS8", - "description": { - "kind": "User", - "name": "ImS8" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2849 - } - }, - { - "name": "AutoFitOnlyGrows", - "is_array": false, - "is_anonymous": false, - "type": { - "declaration": "bool", - "description": { - "kind": "Builtin", - "builtin_type": "bool" - } - }, - "is_internal": false, - "source_location": { - "filename": "imgui_internal.h", - "line": 2850 + "line": 2892 } }, { @@ -29144,7 +29526,58 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2851 + "line": 2893 + } + }, + { + "name": "AutoFitFramesX", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImS8", + "description": { + "kind": "User", + "name": "ImS8" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2894 + } + }, + { + "name": "AutoFitFramesY", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImS8", + "description": { + "kind": "User", + "name": "ImS8" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2894 + } + }, + { + "name": "AutoFitOnlyGrows", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2895 } }, { @@ -29164,7 +29597,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2852 + "line": 2896 } }, { @@ -29184,7 +29617,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2853 + "line": 2897 } }, { @@ -29204,7 +29637,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2854 + "line": 2898 } }, { @@ -29224,7 +29657,28 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2855 + "line": 2899 + } + }, + { + "name": "BgClickFlags", + "is_array": false, + "width": 8, + "is_anonymous": false, + "type": { + "declaration": "ImGuiWindowBgClickFlags", + "description": { + "kind": "User", + "name": "ImGuiWindowBgClickFlags" + } + }, + "comments": { + "attached": "// Configure behavior of click+dragging on window bg/void or over items. Default sets by io.ConfigWindowsMoveFromTitleBarOnly. If you use this please report in #3379." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 2900 } }, { @@ -29245,7 +29699,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2856 + "line": 2901 } }, { @@ -29266,7 +29720,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2857 + "line": 2902 } }, { @@ -29287,7 +29741,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2858 + "line": 2903 } }, { @@ -29308,7 +29762,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2859 + "line": 2904 } }, { @@ -29328,7 +29782,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2860 + "line": 2905 } }, { @@ -29348,7 +29802,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2861 + "line": 2906 } }, { @@ -29368,7 +29822,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2863 + "line": 2908 } }, { @@ -29388,7 +29842,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2864 + "line": 2909 } }, { @@ -29412,7 +29866,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2868 + "line": 2913 } }, { @@ -29432,7 +29886,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2869 + "line": 2914 } }, { @@ -29452,7 +29906,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2870 + "line": 2915 } }, { @@ -29472,7 +29926,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2871 + "line": 2916 } }, { @@ -29492,7 +29946,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2872 + "line": 2917 } }, { @@ -29512,7 +29966,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2873 + "line": 2918 } }, { @@ -29532,7 +29986,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2874 + "line": 2919 } }, { @@ -29552,7 +30006,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2875 + "line": 2920 } }, { @@ -29569,7 +30023,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2876 + "line": 2921 } }, { @@ -29589,7 +30043,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2878 + "line": 2923 } }, { @@ -29609,7 +30063,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2879 + "line": 2924 } }, { @@ -29629,7 +30083,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2880 + "line": 2925 } }, { @@ -29646,7 +30100,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2881 + "line": 2926 } }, { @@ -29663,7 +30117,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2882 + "line": 2927 } }, { @@ -29680,7 +30134,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2883 + "line": 2928 } }, { @@ -29700,7 +30154,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2884 + "line": 2929 } }, { @@ -29717,7 +30171,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2885 + "line": 2930 } }, { @@ -29737,7 +30191,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2886 + "line": 2931 } }, { @@ -29757,7 +30211,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2887 + "line": 2932 } }, { @@ -29780,7 +30234,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2889 + "line": 2934 } }, { @@ -29797,7 +30251,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2890 + "line": 2935 } }, { @@ -29820,7 +30274,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2891 + "line": 2936 } }, { @@ -29840,7 +30294,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2892 + "line": 2937 } }, { @@ -29863,7 +30317,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2893 + "line": 2938 } }, { @@ -29886,7 +30340,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2894 + "line": 2939 } }, { @@ -29909,7 +30363,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2895 + "line": 2940 } }, { @@ -29932,7 +30386,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2896 + "line": 2941 } }, { @@ -29955,7 +30409,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2897 + "line": 2942 } }, { @@ -29973,12 +30427,12 @@ } }, "comments": { - "attached": "// Set to manual link a window to its logical parent so that Shortcut() chain are honoerd (e.g. Tool linked to Document)" + "attached": "// Set to manual link a window to its logical parent so that Shortcut() chain are honored (e.g. Tool linked to Document)" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2898 + "line": 2943 } }, { @@ -30001,7 +30455,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2900 + "line": 2945 } }, { @@ -30026,7 +30480,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2901 + "line": 2946 } }, { @@ -30051,7 +30505,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2902 + "line": 2947 } }, { @@ -30076,7 +30530,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2903 + "line": 2948 } }, { @@ -30096,7 +30550,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2904 + "line": 2949 } }, { @@ -30116,7 +30570,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2906 + "line": 2951 } }, { @@ -30133,7 +30587,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2907 + "line": 2952 } }, { @@ -30153,7 +30607,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2908 + "line": 2953 } }, { @@ -30177,7 +30631,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2911 + "line": 2956 } }, { @@ -30195,7 +30649,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2912 + "line": 2957 } }, { @@ -30216,7 +30670,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2913 + "line": 2958 } }, { @@ -30234,7 +30688,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2914 + "line": 2959 } }, { @@ -30254,7 +30708,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2915 + "line": 2960 } }, { @@ -30271,7 +30725,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2916 + "line": 2961 } }, { @@ -30294,7 +30748,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2917 + "line": 2962 } }, { @@ -30317,7 +30771,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2918 + "line": 2963 } }, { @@ -30337,7 +30791,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2919 + "line": 2964 } } ], @@ -30349,7 +30803,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2790 + "line": 2834 } }, { @@ -30374,7 +30828,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2965 + "line": 3010 } }, { @@ -30391,7 +30845,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2966 + "line": 3011 } }, { @@ -30414,7 +30868,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2967 + "line": 3012 } }, { @@ -30431,7 +30885,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2968 + "line": 3013 } }, { @@ -30451,7 +30905,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2969 + "line": 3014 } }, { @@ -30471,7 +30925,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2970 + "line": 3015 } }, { @@ -30491,7 +30945,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2971 + "line": 3016 } }, { @@ -30511,7 +30965,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2972 + "line": 3017 } }, { @@ -30531,7 +30985,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2973 + "line": 3018 } }, { @@ -30551,7 +31005,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2974 + "line": 3019 } }, { @@ -30571,7 +31025,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2975 + "line": 3020 } }, { @@ -30591,7 +31045,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2976 + "line": 3021 } }, { @@ -30611,7 +31065,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2977 + "line": 3022 } } ], @@ -30623,7 +31077,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2963 + "line": 3008 } }, { @@ -30651,7 +31105,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2985 + "line": 3030 } }, { @@ -30668,7 +31122,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2986 + "line": 3031 } }, { @@ -30685,7 +31139,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2987 + "line": 3032 } }, { @@ -30705,7 +31159,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2988 + "line": 3033 } }, { @@ -30725,7 +31179,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2989 + "line": 3034 } }, { @@ -30745,7 +31199,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2990 + "line": 3035 } }, { @@ -30760,12 +31214,12 @@ } }, "comments": { - "attached": "// Can occasionally be != SelectedTabId (e.g. when previewing contents for CTRL+TAB preview)" + "attached": "// Can occasionally be != SelectedTabId (e.g. when previewing contents for Ctrl+Tab preview)" }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2991 + "line": 3036 } }, { @@ -30782,7 +31236,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2992 + "line": 3037 } }, { @@ -30799,7 +31253,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2993 + "line": 3038 } }, { @@ -30816,7 +31270,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2994 + "line": 3039 } }, { @@ -30836,7 +31290,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2995 + "line": 3040 } }, { @@ -30853,7 +31307,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2996 + "line": 3041 } }, { @@ -30873,7 +31327,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2997 + "line": 3042 } }, { @@ -30893,7 +31347,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2998 + "line": 3043 } }, { @@ -30913,7 +31367,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2999 + "line": 3044 } }, { @@ -30930,7 +31384,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3000 + "line": 3045 } }, { @@ -30947,7 +31401,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3001 + "line": 3046 } }, { @@ -30964,7 +31418,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3002 + "line": 3047 } }, { @@ -30981,7 +31435,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3003 + "line": 3048 } }, { @@ -30998,7 +31452,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3004 + "line": 3049 } }, { @@ -31015,7 +31469,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3005 + "line": 3050 } }, { @@ -31032,7 +31486,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3006 + "line": 3051 } }, { @@ -31049,7 +31503,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3007 + "line": 3052 } }, { @@ -31066,7 +31520,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3008 + "line": 3053 } }, { @@ -31083,7 +31537,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3009 + "line": 3054 } }, { @@ -31100,7 +31554,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3010 + "line": 3055 } }, { @@ -31117,7 +31571,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3011 + "line": 3056 } }, { @@ -31134,7 +31588,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3012 + "line": 3057 } }, { @@ -31154,7 +31608,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3013 + "line": 3058 } }, { @@ -31171,7 +31625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3014 + "line": 3059 } }, { @@ -31191,7 +31645,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3015 + "line": 3060 } }, { @@ -31211,7 +31665,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3016 + "line": 3061 } }, { @@ -31228,7 +31682,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3017 + "line": 3062 } }, { @@ -31248,7 +31702,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3018 + "line": 3063 } }, { @@ -31265,7 +31719,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3019 + "line": 3064 } }, { @@ -31285,7 +31739,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3020 + "line": 3065 } } ], @@ -31297,7 +31751,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2983 + "line": 3028 } }, { @@ -31325,7 +31779,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3038 + "line": 3083 } }, { @@ -31345,7 +31799,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3039 + "line": 3084 } }, { @@ -31365,7 +31819,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3040 + "line": 3085 } }, { @@ -31382,7 +31836,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3041 + "line": 3086 } }, { @@ -31402,7 +31856,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3042 + "line": 3087 } }, { @@ -31422,7 +31876,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3043 + "line": 3088 } }, { @@ -31442,7 +31896,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3044 + "line": 3089 } }, { @@ -31462,7 +31916,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3045 + "line": 3090 } }, { @@ -31482,7 +31936,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3046 + "line": 3091 } }, { @@ -31502,7 +31956,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3047 + "line": 3092 } }, { @@ -31522,7 +31976,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3048 + "line": 3093 } }, { @@ -31542,7 +31996,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3049 + "line": 3094 } }, { @@ -31562,7 +32016,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3050 + "line": 3095 } }, { @@ -31582,7 +32036,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3051 + "line": 3096 } }, { @@ -31602,7 +32056,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3052 + "line": 3097 } }, { @@ -31619,7 +32073,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3053 + "line": 3098 } }, { @@ -31639,7 +32093,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3054 + "line": 3099 } }, { @@ -31656,7 +32110,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3055 + "line": 3100 } }, { @@ -31676,7 +32130,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3056 + "line": 3101 } }, { @@ -31696,7 +32150,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3057 + "line": 3102 } }, { @@ -31716,7 +32170,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3058 + "line": 3103 } }, { @@ -31736,7 +32190,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3059 + "line": 3104 } }, { @@ -31756,7 +32210,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3060 + "line": 3105 } }, { @@ -31776,7 +32230,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3061 + "line": 3106 } }, { @@ -31796,7 +32250,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3062 + "line": 3107 } }, { @@ -31816,7 +32270,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3063 + "line": 3108 } }, { @@ -31836,7 +32290,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3064 + "line": 3109 } }, { @@ -31856,7 +32310,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3065 + "line": 3110 } }, { @@ -31876,7 +32330,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3066 + "line": 3111 } }, { @@ -31893,7 +32347,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3067 + "line": 3112 } }, { @@ -31913,7 +32367,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3068 + "line": 3113 } }, { @@ -31930,7 +32384,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3069 + "line": 3114 } }, { @@ -31950,7 +32404,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3070 + "line": 3115 } }, { @@ -31970,7 +32424,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3071 + "line": 3116 } }, { @@ -31987,7 +32441,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3072 + "line": 3117 } }, { @@ -32007,7 +32461,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3073 + "line": 3118 } }, { @@ -32027,7 +32481,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3074 + "line": 3119 } }, { @@ -32047,7 +32501,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3075 + "line": 3120 } }, { @@ -32068,7 +32522,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3076 + "line": 3121 } }, { @@ -32089,7 +32543,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3077 + "line": 3122 } }, { @@ -32110,7 +32564,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3078 + "line": 3123 } }, { @@ -32130,7 +32584,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3079 + "line": 3124 } } ], @@ -32145,7 +32599,7 @@ "is_internal": true, "source_location": { "filename": "imgui_internal.h", - "line": 3036 + "line": 3081 } }, { @@ -32173,7 +32627,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3098 + "line": 3143 } }, { @@ -32193,7 +32647,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3099 + "line": 3144 } } ], @@ -32206,7 +32660,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3096 + "line": 3141 } }, { @@ -32234,7 +32688,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3107 + "line": 3152 } }, { @@ -32251,7 +32705,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3108 + "line": 3153 } }, { @@ -32268,7 +32722,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3109 + "line": 3154 } }, { @@ -32285,7 +32739,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3110 + "line": 3155 } } ], @@ -32299,7 +32753,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3105 + "line": 3150 } }, { @@ -32324,7 +32778,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3117 + "line": 3162 } }, { @@ -32344,7 +32798,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3118 + "line": 3163 } }, { @@ -32364,7 +32818,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3119 + "line": 3164 } }, { @@ -32384,7 +32838,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3120 + "line": 3165 } }, { @@ -32404,7 +32858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3121 + "line": 3166 } }, { @@ -32424,7 +32878,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3122 + "line": 3167 } } ], @@ -32437,7 +32891,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3115 + "line": 3160 } }, { @@ -32462,7 +32916,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3130 + "line": 3175 } }, { @@ -32479,7 +32933,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3131 + "line": 3176 } }, { @@ -32502,7 +32956,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3132 + "line": 3177 } }, { @@ -32525,7 +32979,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3133 + "line": 3178 } }, { @@ -32545,7 +32999,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3134 + "line": 3179 } }, { @@ -32565,7 +33019,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3135 + "line": 3180 } }, { @@ -32585,7 +33039,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3136 + "line": 3181 } }, { @@ -32605,7 +33059,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3137 + "line": 3182 } }, { @@ -32625,7 +33079,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3138 + "line": 3183 } }, { @@ -32645,7 +33099,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3139 + "line": 3184 } }, { @@ -32665,7 +33119,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3140 + "line": 3185 } }, { @@ -32685,7 +33139,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3141 + "line": 3186 } }, { @@ -32702,7 +33156,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3142 + "line": 3187 } }, { @@ -32722,7 +33176,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3143 + "line": 3188 } }, { @@ -32739,7 +33193,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3144 + "line": 3189 } }, { @@ -32756,7 +33210,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3145 + "line": 3190 } }, { @@ -32776,7 +33230,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3146 + "line": 3191 } }, { @@ -32796,7 +33250,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3147 + "line": 3192 } }, { @@ -32813,7 +33267,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3148 + "line": 3193 } }, { @@ -32830,7 +33284,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3149 + "line": 3194 } }, { @@ -32850,7 +33304,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3150 + "line": 3195 } }, { @@ -32870,7 +33324,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3151 + "line": 3196 } }, { @@ -32887,7 +33341,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3152 + "line": 3197 } }, { @@ -32904,7 +33358,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3153 + "line": 3198 } }, { @@ -32925,7 +33379,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3154 + "line": 3199 } }, { @@ -32943,7 +33397,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3155 + "line": 3200 } }, { @@ -32963,7 +33417,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3156 + "line": 3201 } }, { @@ -32988,7 +33442,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3157 + "line": 3202 } }, { @@ -33005,7 +33459,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3158 + "line": 3203 } }, { @@ -33022,7 +33476,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3159 + "line": 3204 } }, { @@ -33039,7 +33493,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3160 + "line": 3205 } }, { @@ -33056,7 +33510,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3161 + "line": 3206 } }, { @@ -33073,7 +33527,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3162 + "line": 3207 } }, { @@ -33090,7 +33544,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3163 + "line": 3208 } }, { @@ -33107,7 +33561,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3164 + "line": 3209 } }, { @@ -33127,7 +33581,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3165 + "line": 3210 } }, { @@ -33147,7 +33601,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3166 + "line": 3211 } }, { @@ -33164,7 +33618,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3167 + "line": 3212 } }, { @@ -33184,7 +33638,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3168 + "line": 3213 } }, { @@ -33204,7 +33658,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3169 + "line": 3214 } }, { @@ -33224,7 +33678,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3170 + "line": 3215 } }, { @@ -33244,7 +33698,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3171 + "line": 3216 } }, { @@ -33261,7 +33715,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3172 + "line": 3217 } }, { @@ -33281,7 +33735,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3173 + "line": 3218 } }, { @@ -33301,7 +33755,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3174 + "line": 3219 } }, { @@ -33321,7 +33775,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3175 + "line": 3220 } }, { @@ -33341,7 +33795,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3176 + "line": 3221 } }, { @@ -33361,7 +33815,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3177 + "line": 3222 } }, { @@ -33381,7 +33835,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3178 + "line": 3223 } }, { @@ -33398,7 +33852,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3179 + "line": 3224 } }, { @@ -33415,7 +33869,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3180 + "line": 3225 } }, { @@ -33435,7 +33889,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3181 + "line": 3226 } }, { @@ -33455,7 +33909,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3182 + "line": 3227 } }, { @@ -33475,7 +33929,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3183 + "line": 3228 } }, { @@ -33495,7 +33949,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3184 + "line": 3229 } }, { @@ -33515,7 +33969,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3185 + "line": 3230 } }, { @@ -33538,7 +33992,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3186 + "line": 3231 } }, { @@ -33561,7 +34015,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3187 + "line": 3232 } }, { @@ -33581,7 +34035,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3188 + "line": 3233 } }, { @@ -33604,7 +34058,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3189 + "line": 3234 } }, { @@ -33621,7 +34075,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3190 + "line": 3235 } }, { @@ -33641,7 +34095,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3191 + "line": 3236 } }, { @@ -33658,7 +34112,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3192 + "line": 3237 } }, { @@ -33678,7 +34132,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3193 + "line": 3238 } }, { @@ -33698,7 +34152,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3194 + "line": 3239 } }, { @@ -33715,7 +34169,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3195 + "line": 3240 } }, { @@ -33735,7 +34189,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3196 + "line": 3241 } }, { @@ -33755,7 +34209,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3197 + "line": 3242 } }, { @@ -33775,7 +34229,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3198 + "line": 3243 } }, { @@ -33795,7 +34249,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3199 + "line": 3244 } }, { @@ -33815,7 +34269,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3200 + "line": 3245 } }, { @@ -33835,7 +34289,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3201 + "line": 3246 } }, { @@ -33855,7 +34309,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3202 + "line": 3247 } }, { @@ -33875,7 +34329,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3203 + "line": 3248 } }, { @@ -33895,7 +34349,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3204 + "line": 3249 } }, { @@ -33915,7 +34369,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3205 + "line": 3250 } }, { @@ -33935,7 +34389,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3206 + "line": 3251 } }, { @@ -33955,7 +34409,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3207 + "line": 3252 } }, { @@ -33975,7 +34429,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3208 + "line": 3253 } }, { @@ -33995,7 +34449,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3209 + "line": 3254 } }, { @@ -34015,7 +34469,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3210 + "line": 3255 } }, { @@ -34035,7 +34489,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3211 + "line": 3256 } }, { @@ -34055,7 +34509,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3212 + "line": 3257 } }, { @@ -34075,7 +34529,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3213 + "line": 3258 } }, { @@ -34095,7 +34549,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3214 + "line": 3259 } }, { @@ -34115,7 +34569,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3215 + "line": 3260 } }, { @@ -34135,7 +34589,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3216 + "line": 3261 } }, { @@ -34155,7 +34609,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3217 + "line": 3262 } }, { @@ -34175,7 +34629,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3218 + "line": 3263 } }, { @@ -34195,7 +34649,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3219 + "line": 3264 } }, { @@ -34215,7 +34669,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3220 + "line": 3265 } }, { @@ -34232,7 +34686,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3221 + "line": 3266 } }, { @@ -34252,7 +34706,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3222 + "line": 3267 } }, { @@ -34272,7 +34726,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3223 + "line": 3268 } }, { @@ -34292,7 +34746,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3224 + "line": 3269 } }, { @@ -34309,7 +34763,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3225 + "line": 3270 } }, { @@ -34326,7 +34780,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3226 + "line": 3271 } }, { @@ -34346,7 +34800,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3227 + "line": 3272 } }, { @@ -34366,7 +34820,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3228 + "line": 3273 } }, { @@ -34386,7 +34840,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3229 + "line": 3274 } }, { @@ -34403,7 +34857,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3230 + "line": 3275 } }, { @@ -34418,12 +34872,12 @@ } }, "comments": { - "attached": "// Set when table settings have changed and needs to be reported into ImGuiTableSetttings data." + "attached": "// Set when table settings have changed and needs to be reported into ImGuiTableSettings data." }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3231 + "line": 3276 } }, { @@ -34443,7 +34897,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3232 + "line": 3277 } }, { @@ -34460,7 +34914,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3233 + "line": 3278 } }, { @@ -34477,7 +34931,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3234 + "line": 3279 } }, { @@ -34497,7 +34951,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3235 + "line": 3280 } }, { @@ -34517,7 +34971,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3236 + "line": 3281 } }, { @@ -34534,7 +34988,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3237 + "line": 3282 } }, { @@ -34551,7 +35005,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3238 + "line": 3283 } }, { @@ -34571,7 +35025,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3239 + "line": 3284 } }, { @@ -34591,7 +35045,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3240 + "line": 3285 } }, { @@ -34608,7 +35062,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3241 + "line": 3286 } }, { @@ -34628,7 +35082,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3242 + "line": 3287 } } ], @@ -34640,7 +35094,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3128 + "line": 3173 } }, { @@ -34651,6 +35105,26 @@ "forward_declaration": false, "is_anonymous": false, "fields": [ + { + "name": "WindowID", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiID", + "description": { + "kind": "User", + "name": "ImGuiID" + } + }, + "comments": { + "attached": "// Shortcut to g.Tables[TableIndex]->OuterWindow->ID." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3300 + } + }, { "name": "TableIndex", "is_array": false, @@ -34668,7 +35142,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3255 + "line": 3301 } }, { @@ -34688,7 +35162,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3256 + "line": 3302 } }, { @@ -34708,7 +35182,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3257 + "line": 3303 } }, { @@ -34728,7 +35202,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3258 + "line": 3304 } }, { @@ -34748,7 +35222,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3260 + "line": 3306 } }, { @@ -34765,7 +35239,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3261 + "line": 3307 } }, { @@ -34785,7 +35259,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3263 + "line": 3309 } }, { @@ -34805,7 +35279,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3264 + "line": 3310 } }, { @@ -34825,7 +35299,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3265 + "line": 3311 } }, { @@ -34845,7 +35319,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3266 + "line": 3312 } }, { @@ -34865,7 +35339,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3267 + "line": 3313 } }, { @@ -34885,7 +35359,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3268 + "line": 3314 } }, { @@ -34905,7 +35379,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3269 + "line": 3315 } }, { @@ -34925,7 +35399,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3270 + "line": 3316 } } ], @@ -34941,7 +35415,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3253 + "line": 3298 } }, { @@ -34966,7 +35440,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3278 + "line": 3324 } }, { @@ -34983,7 +35457,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3279 + "line": 3325 } }, { @@ -35000,7 +35474,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3280 + "line": 3326 } }, { @@ -35017,7 +35491,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3281 + "line": 3327 } }, { @@ -35034,7 +35508,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3282 + "line": 3328 } }, { @@ -35052,7 +35526,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3283 + "line": 3329 } }, { @@ -35073,7 +35547,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3284 + "line": 3330 } }, { @@ -35091,7 +35565,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3285 + "line": 3331 } } ], @@ -35103,7 +35577,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3276 + "line": 3322 } }, { @@ -35131,7 +35605,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3302 + "line": 3348 } }, { @@ -35151,7 +35625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3303 + "line": 3349 } }, { @@ -35171,7 +35645,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3304 + "line": 3350 } }, { @@ -35188,7 +35662,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3305 + "line": 3351 } }, { @@ -35208,7 +35682,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3306 + "line": 3352 } }, { @@ -35228,7 +35702,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3307 + "line": 3353 } } ], @@ -35240,7 +35714,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3300 + "line": 3346 } }, { @@ -35271,7 +35745,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3996 + "line": 4048 } }, { @@ -36250,7 +36724,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4008 + "line": 4060 } } ], @@ -36264,7 +36738,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3994 + "line": 4046 } }, { @@ -36293,7 +36767,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4047 + "line": 4099 } }, { @@ -36302,10 +36776,10 @@ "width": 10, "is_anonymous": false, "type": { - "declaration": "int", + "declaration": "unsigned int", "description": { "kind": "Builtin", - "builtin_type": "int" + "builtin_type": "unsigned_int" } }, "comments": { @@ -36314,7 +36788,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4048 + "line": 4100 } }, { @@ -36332,7 +36806,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4049 + "line": 4101 } } ], @@ -36348,7 +36822,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4045 + "line": 4097 } }, { @@ -36373,7 +36847,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -36390,7 +36864,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -36410,7 +36884,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -36420,7 +36894,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -36448,7 +36922,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4055 + "line": 4107 } }, { @@ -36468,7 +36942,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4056 + "line": 4108 } }, { @@ -36488,7 +36962,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4057 + "line": 4109 } }, { @@ -36508,7 +36982,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4058 + "line": 4110 } }, { @@ -36528,7 +37002,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4059 + "line": 4111 } }, { @@ -36553,7 +37027,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4062 + "line": 4114 } }, { @@ -36570,7 +37044,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4063 + "line": 4115 } }, { @@ -36587,7 +37061,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4064 + "line": 4116 } }, { @@ -36604,7 +37078,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4065 + "line": 4117 } }, { @@ -36621,7 +37095,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4066 + "line": 4118 } } ], @@ -36633,7 +37107,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4053 + "line": 4105 } }, { @@ -36653,7 +37127,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4071 + "line": 4123 } }, { @@ -36673,7 +37147,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4074 + "line": 4126 } }, { @@ -36704,7 +37178,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2249 + "line": 2278 } }, { @@ -36727,7 +37201,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2250 + "line": 2279 } }, { @@ -36753,7 +37227,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2251 + "line": 2280 } } ], @@ -36769,7 +37243,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2247 + "line": 2276 } }, { @@ -36799,14 +37273,14 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4077 + "line": 4129 } } ], "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4077 + "line": 4129 } }, { @@ -36834,7 +37308,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4082 + "line": 4134 } }, { @@ -36851,7 +37325,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4083 + "line": 4135 } }, { @@ -36868,7 +37342,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4084 + "line": 4136 } }, { @@ -36888,7 +37362,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4085 + "line": 4137 } }, { @@ -36908,7 +37382,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4086 + "line": 4138 } }, { @@ -36928,7 +37402,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4087 + "line": 4139 } }, { @@ -36948,7 +37422,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4088 + "line": 4140 } }, { @@ -36968,7 +37442,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4089 + "line": 4141 } }, { @@ -36985,7 +37459,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4090 + "line": 4142 } }, { @@ -37002,7 +37476,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4091 + "line": 4143 } }, { @@ -37022,7 +37496,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4092 + "line": 4144 } }, { @@ -37042,7 +37516,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4093 + "line": 4145 } }, { @@ -37062,7 +37536,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4094 + "line": 4146 } }, { @@ -37082,7 +37556,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4095 + "line": 4147 } }, { @@ -37102,7 +37576,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4096 + "line": 4148 } }, { @@ -37124,7 +37598,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4099 + "line": 4151 } }, { @@ -37144,7 +37618,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4100 + "line": 4152 } }, { @@ -37161,7 +37635,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4101 + "line": 4153 } }, { @@ -37184,7 +37658,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4104 + "line": 4156 } }, { @@ -37201,7 +37675,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4105 + "line": 4157 } } ], @@ -37213,7 +37687,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4080 + "line": 4132 } } ], @@ -37277,7 +37751,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 378 + "line": 379 } }, { @@ -37347,7 +37821,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 378 + "line": 379 } }, { @@ -37393,7 +37867,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 379 + "line": 380 } }, { @@ -37464,7 +37938,56 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 379 + "line": 380 + } + }, + { + "name": "cImHashSkipUncontributingPrefix", + "original_fully_qualified_name": "ImHashSkipUncontributingPrefix", + "return_type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "arguments": [ + { + "name": "label", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 381 } }, { @@ -37519,7 +38042,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 387 + "line": 389 } }, { @@ -37561,7 +38084,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 390 + "line": 392 } }, { @@ -37598,7 +38121,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 391 + "line": 393 } }, { @@ -37635,7 +38158,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 392 + "line": 394 } }, { @@ -37672,7 +38195,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 393 + "line": 395 } }, { @@ -37737,7 +38260,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 398 + "line": 400 } }, { @@ -37815,7 +38338,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 399 + "line": 401 } }, { @@ -37890,7 +38413,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 400 + "line": 402 } }, { @@ -37939,7 +38462,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 401 + "line": 403 } }, { @@ -38001,7 +38524,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 402 + "line": 404 } }, { @@ -38082,7 +38605,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 403 + "line": 405 } }, { @@ -38166,7 +38689,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 404 + "line": 406 } }, { @@ -38237,7 +38760,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 405 + "line": 407 } }, { @@ -38346,7 +38869,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 406 + "line": 408 } }, { @@ -38389,7 +38912,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 407 + "line": 409 } }, { @@ -38441,7 +38964,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 408 + "line": 410 } }, { @@ -38487,7 +39010,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 409 + "line": 411 } }, { @@ -38558,7 +39081,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 410 + "line": 412 } }, { @@ -38595,7 +39118,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 412 + "line": 414 } }, { @@ -38632,7 +39155,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 413 + "line": 415 } }, { @@ -38669,7 +39192,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 414 + "line": 416 } }, { @@ -38706,7 +39229,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 415 + "line": 417 } }, { @@ -38790,7 +39313,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 419 + "line": 421 } }, { @@ -38876,7 +39399,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 420 + "line": 422 } }, { @@ -38970,7 +39493,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 421 + "line": 423 } }, { @@ -39071,7 +39594,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 422 + "line": 424 } }, { @@ -39120,7 +39643,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 423 + "line": 425 } }, { @@ -39169,7 +39692,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 424 + "line": 426 } }, { @@ -39247,7 +39770,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 425 + "line": 427 } }, { @@ -39319,7 +39842,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 426 + "line": 428 } }, { @@ -39397,7 +39920,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 427 + "line": 429 } }, { @@ -39453,7 +39976,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 428 + "line": 430 } }, { @@ -39514,7 +40037,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 431 + "line": 433 } }, { @@ -39608,7 +40131,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 432 + "line": 434 } }, { @@ -39689,7 +40212,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 433 + "line": 435 } }, { @@ -39783,7 +40306,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 434 + "line": 436 } }, { @@ -39900,7 +40423,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 434 + "line": 436 } }, { @@ -39965,7 +40488,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 435 + "line": 437 } }, { @@ -40030,7 +40553,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 436 + "line": 438 } }, { @@ -40095,7 +40618,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 437 + "line": 439 } }, { @@ -40135,7 +40658,7 @@ "is_instance_pointer": false }, { - "name": "in_text_curr", + "name": "in_p", "type": { "declaration": "const char*", "description": { @@ -40166,7 +40689,97 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 438 + "line": 440 + } + }, + { + "name": "cImTextFindValidUtf8CodepointEnd", + "original_fully_qualified_name": "ImTextFindValidUtf8CodepointEnd", + "return_type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "arguments": [ + { + "name": "in_text_start", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "in_text_end", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "in_p", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "comments": { + "attached": "// return previous UTF-8 code-point if 'in_p' is not the end of a valid one." + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 441 } }, { @@ -40231,7 +40844,403 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 439 + "line": 442 + } + }, + { + "name": "cImFontCalcTextSizeEx", + "original_fully_qualified_name": "ImFontCalcTextSizeEx", + "return_type": { + "declaration": "ImVec2", + "description": { + "kind": "User", + "name": "ImVec2" + } + }, + "arguments": [ + { + "name": "font", + "type": { + "declaration": "ImFont*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFont" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "size", + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "max_width", + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "wrap_width", + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "text_begin", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "text_end_display", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "text_end", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "out_remaining", + "type": { + "declaration": "const char**", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "out_offset", + "type": { + "declaration": "ImVec2*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImVec2" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "flags", + "type": { + "declaration": "ImDrawTextFlags", + "description": { + "kind": "User", + "name": "ImDrawTextFlags" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 452 + } + }, + { + "name": "cImFontCalcWordWrapPositionEx", + "original_fully_qualified_name": "ImFontCalcWordWrapPositionEx", + "return_type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "arguments": [ + { + "name": "font", + "type": { + "declaration": "ImFont*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFont" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "size", + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "text", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "text_end", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "wrap_width", + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "flags", + "type": { + "declaration": "ImDrawTextFlags", + "description": { + "kind": "User", + "name": "ImDrawTextFlags" + } + }, + "is_array": false, + "is_varargs": false, + "default_value": "0", + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 453 + } + }, + { + "name": "cImTextCalcWordWrapNextLineStart", + "original_fully_qualified_name": "ImTextCalcWordWrapNextLineStart", + "return_type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "arguments": [ + { + "name": "text", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "text_end", + "type": { + "declaration": "const char*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "char", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "flags", + "type": { + "declaration": "ImDrawTextFlags", + "description": { + "kind": "User", + "name": "ImDrawTextFlags" + } + }, + "is_array": false, + "is_varargs": false, + "default_value": "0", + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "comments": { + "attached": "// trim trailing space and find beginning of next line" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 454 } }, { @@ -40299,7 +41308,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 445 + "line": 460 } }, { @@ -40342,7 +41351,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 446 + "line": 461 } }, { @@ -40385,7 +41394,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 447 + "line": 462 } }, { @@ -40470,7 +41479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 448 + "line": 463 } }, { @@ -40558,7 +41567,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 449 + "line": 464 } }, { @@ -40626,7 +41635,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 453 + "line": 468 } }, { @@ -40669,7 +41678,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 454 + "line": 469 } }, { @@ -40712,7 +41721,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 455 + "line": 470 } }, { @@ -40797,7 +41806,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 456 + "line": 471 } }, { @@ -40885,7 +41894,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 457 + "line": 472 } }, { @@ -40953,7 +41962,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 461 + "line": 476 } }, { @@ -41049,7 +42058,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 461 + "line": 476 } }, { @@ -41108,7 +42117,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 476 + "line": 491 } }, { @@ -41164,7 +42173,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 477 + "line": 492 } }, { @@ -41210,7 +42219,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 478 + "line": 493 } }, { @@ -41253,7 +42262,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 479 + "line": 494 } }, { @@ -41296,7 +42305,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 480 + "line": 495 } }, { @@ -41339,7 +42348,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 481 + "line": 496 } }, { @@ -41382,7 +42391,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 482 + "line": 497 } }, { @@ -41428,7 +42437,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 483 + "line": 498 } }, { @@ -41471,7 +42480,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 484 + "line": 499 } }, { @@ -41518,7 +42527,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 486 + "line": 501 } }, { @@ -41565,7 +42574,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 488 + "line": 503 } }, { @@ -41608,7 +42617,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 490 + "line": 505 } }, { @@ -41663,7 +42672,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 502 + "line": 517 } }, { @@ -41713,7 +42722,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 503 + "line": 518 } }, { @@ -41776,7 +42785,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 504 + "line": 519 } }, { @@ -41839,7 +42848,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 505 + "line": 520 } }, { @@ -41902,7 +42911,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 506 + "line": 521 } }, { @@ -41965,7 +42974,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 507 + "line": 522 } }, { @@ -42002,7 +43011,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 508 + "line": 523 } }, { @@ -42039,7 +43048,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 509 + "line": 524 } }, { @@ -42076,7 +43085,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 510 + "line": 525 } }, { @@ -42126,7 +43135,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 511 + "line": 526 } }, { @@ -42163,7 +43172,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 512 + "line": 527 } }, { @@ -42200,7 +43209,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 513 + "line": 528 } }, { @@ -42240,7 +43249,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 514 + "line": 529 } }, { @@ -42277,7 +43286,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 515 + "line": 530 } }, { @@ -42314,7 +43323,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 516 + "line": 531 } }, { @@ -42351,7 +43360,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 517 + "line": 532 } }, { @@ -42401,7 +43410,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 518 + "line": 533 } }, { @@ -42451,7 +43460,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 519 + "line": 534 } }, { @@ -42514,7 +43523,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 520 + "line": 535 } }, { @@ -42577,7 +43586,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 521 + "line": 536 } }, { @@ -42666,7 +43675,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 522 + "line": 537 } }, { @@ -42716,7 +43725,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 523 + "line": 538 } }, { @@ -42753,7 +43762,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 524 + "line": 539 } }, { @@ -42816,7 +43825,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 525 + "line": 540 } }, { @@ -42910,7 +43919,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 529 + "line": 544 } }, { @@ -43015,7 +44024,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 530 + "line": 545 } }, { @@ -43120,7 +44129,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 531 + "line": 546 } }, { @@ -43196,7 +44205,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 532 + "line": 547 } }, { @@ -43259,7 +44268,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 533 + "line": 548 } }, { @@ -43335,7 +44344,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 534 + "line": 549 } }, { @@ -43411,7 +44420,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 535 + "line": 550 } }, { @@ -43541,7 +44550,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 536 + "line": 551 } }, { @@ -43604,7 +44613,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 537 + "line": 552 } }, { @@ -43667,7 +44676,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 538 + "line": 553 } }, { @@ -43712,7 +44721,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 579 + "line": 594 } }, { @@ -43757,7 +44766,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 580 + "line": 595 } }, { @@ -43802,7 +44811,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 581 + "line": 596 } }, { @@ -43847,7 +44856,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 582 + "line": 597 } }, { @@ -43892,7 +44901,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 583 + "line": 598 } }, { @@ -43940,7 +44949,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 584 + "line": 599 } }, { @@ -43988,7 +44997,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 585 + "line": 600 } }, { @@ -44036,7 +45045,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 586 + "line": 601 } }, { @@ -44084,7 +45093,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 587 + "line": 602 } }, { @@ -44142,7 +45151,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 588 + "line": 603 } }, { @@ -44200,7 +45209,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 589 + "line": 604 } }, { @@ -44271,7 +45280,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 590 + "line": 605 } }, { @@ -44329,7 +45338,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 591 + "line": 606 } }, { @@ -44384,7 +45393,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 592 + "line": 607 } }, { @@ -44439,7 +45448,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 593 + "line": 608 } }, { @@ -44497,7 +45506,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 594 + "line": 609 } }, { @@ -44552,7 +45561,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 595 + "line": 610 } }, { @@ -44607,7 +45616,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 596 + "line": 611 } }, { @@ -44662,7 +45671,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 597 + "line": 612 } }, { @@ -44717,7 +45726,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 598 + "line": 613 } }, { @@ -44775,7 +45784,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 599 + "line": 614 } }, { @@ -44833,7 +45842,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 600 + "line": 615 } }, { @@ -44875,7 +45884,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 601 + "line": 616 } }, { @@ -44920,7 +45929,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 602 + "line": 617 } }, { @@ -44965,7 +45974,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 603 + "line": 618 } }, { @@ -45002,7 +46011,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 609 + "line": 625 } }, { @@ -45055,7 +46064,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 610 + "line": 626 } }, { @@ -45111,7 +46120,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 611 + "line": 627 } }, { @@ -45164,7 +46173,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 612 + "line": 628 } }, { @@ -45217,7 +46226,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 613 + "line": 629 } }, { @@ -45286,7 +46295,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 614 + "line": 630 } }, { @@ -45341,7 +46350,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 650 + "line": 666 } }, { @@ -45383,7 +46392,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 651 + "line": 667 } }, { @@ -45441,7 +46450,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 652 + "line": 668 } }, { @@ -45496,7 +46505,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 653 + "line": 669 } }, { @@ -45551,7 +46560,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 654 + "line": 670 } }, { @@ -45593,7 +46602,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 723 + "line": 739 } }, { @@ -45648,7 +46657,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 724 + "line": 740 } }, { @@ -45703,7 +46712,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 725 + "line": 741 } }, { @@ -45745,7 +46754,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 805 + "line": 821 } }, { @@ -45787,7 +46796,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 806 + "line": 822 } }, { @@ -45867,7 +46876,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 807 + "line": 823 } }, { @@ -45947,7 +46956,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 808 + "line": 824 } }, { @@ -46034,7 +47043,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 809 + "line": 825 } }, { @@ -46111,7 +47120,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 813 + "line": 829 } }, { @@ -46166,7 +47175,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 872 + "line": 888 } }, { @@ -46230,7 +47239,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 899 + "line": 915 } }, { @@ -46298,7 +47307,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1191 + "line": 1207 } }, { @@ -46392,7 +47401,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1192 + "line": 1208 } }, { @@ -46447,7 +47456,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1193 + "line": 1209 } }, { @@ -46489,7 +47498,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1203 + "line": 1219 } }, { @@ -46531,7 +47540,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1242 + "line": 1262 } }, { @@ -46573,7 +47582,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1243 + "line": 1263 } }, { @@ -46631,7 +47640,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1244 + "line": 1264 } }, { @@ -46686,7 +47695,52 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1245 + "line": 1265 + } + }, + { + "name": "ImGuiInputTextState_GetPreferredOffsetX", + "original_fully_qualified_name": "GetPreferredOffsetX", + "return_type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "arguments": [ + { + "name": "self", + "type": { + "declaration": "const ImGuiInputTextState*", + "description": { + "kind": "Pointer", + "is_nullable": false, + "inner_type": { + "kind": "User", + "name": "ImGuiInputTextState", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": true + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "original_class": "ImGuiInputTextState", + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 1266 } }, { @@ -46733,7 +47787,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1248 + "line": 1269 } }, { @@ -46775,7 +47829,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1249 + "line": 1270 } }, { @@ -46820,7 +47874,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1250 + "line": 1271 } }, { @@ -46862,7 +47916,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1251 + "line": 1272 } }, { @@ -46907,7 +47961,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1252 + "line": 1273 } }, { @@ -46952,7 +48006,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1253 + "line": 1274 } }, { @@ -46997,7 +48051,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1254 + "line": 1275 } }, { @@ -47039,7 +48093,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1255 + "line": 1276 } }, { @@ -47090,7 +48144,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1262 + "line": 1283 } }, { @@ -47132,7 +48186,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1263 + "line": 1284 } }, { @@ -47174,7 +48228,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1264 + "line": 1285 } }, { @@ -47216,7 +48270,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1325 + "line": 1352 } }, { @@ -47261,7 +48315,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1355 + "line": 1382 } }, { @@ -47303,7 +48357,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1578 + "line": 1605 } }, { @@ -47354,7 +48408,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1648 + "line": 1675 } }, { @@ -47431,7 +48485,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1649 + "line": 1676 } }, { @@ -47489,7 +48543,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1662 + "line": 1689 } }, { @@ -47531,7 +48585,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1752 + "line": 1780 } }, { @@ -47576,7 +48630,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1796 + "line": 1824 } }, { @@ -47621,7 +48675,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1911 + "line": 1939 } }, { @@ -47663,7 +48717,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 1912 + "line": 1940 } }, { @@ -47714,7 +48768,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2036 + "line": 2064 } }, { @@ -47765,7 +48819,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2037 + "line": 2065 } }, { @@ -47816,7 +48870,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2038 + "line": 2066 } }, { @@ -47867,7 +48921,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2039 + "line": 2067 } }, { @@ -47921,7 +48975,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2040 + "line": 2068 } }, { @@ -47975,7 +49029,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2041 + "line": 2069 } }, { @@ -48026,7 +49080,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2042 + "line": 2070 } }, { @@ -48077,7 +49131,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2043 + "line": 2071 } }, { @@ -48128,7 +49182,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2044 + "line": 2072 } }, { @@ -48179,7 +49233,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2045 + "line": 2073 } }, { @@ -48240,7 +49294,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2047 + "line": 2075 } }, { @@ -48288,7 +49342,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2048 + "line": 2076 } }, { @@ -48330,7 +49384,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2123 + "line": 2152 } }, { @@ -48393,7 +49447,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2126 + "line": 2155 } }, { @@ -48464,7 +49518,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2127 + "line": 2156 } }, { @@ -48509,7 +49563,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2128 + "line": 2157 } }, { @@ -48559,7 +49613,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2131 + "line": 2160 } }, { @@ -48604,7 +49658,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2132 + "line": 2161 } }, { @@ -48649,7 +49703,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2133 + "line": 2162 } }, { @@ -48694,7 +49748,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2159 + "line": 2188 } }, { @@ -48758,7 +49812,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2925 + "line": 2970 } }, { @@ -48839,7 +49893,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2925 + "line": 2970 } }, { @@ -48900,7 +49954,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2926 + "line": 2971 } }, { @@ -48955,7 +50009,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2927 + "line": 2972 } }, { @@ -49010,7 +50064,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2928 + "line": 2973 } }, { @@ -49065,7 +50119,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2929 + "line": 2974 } }, { @@ -49115,7 +50169,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2932 + "line": 2977 } }, { @@ -49160,7 +50214,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2933 + "line": 2978 } }, { @@ -49205,7 +50259,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 2934 + "line": 2979 } }, { @@ -49250,7 +50304,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3310 + "line": 3356 } }, { @@ -49304,7 +50358,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3325 + "line": 3371 } }, { @@ -49349,7 +50403,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3326 + "line": 3372 } }, { @@ -49375,7 +50429,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3327 + "line": 3373 } }, { @@ -49401,7 +50455,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3328 + "line": 3374 } }, { @@ -49441,7 +50495,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3329 + "line": 3375 } }, { @@ -49487,7 +50541,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3330 + "line": 3376 } }, { @@ -49556,7 +50610,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3331 + "line": 3377 } }, { @@ -49596,7 +50650,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3332 + "line": 3378 } }, { @@ -49636,7 +50690,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3333 + "line": 3379 } }, { @@ -49718,7 +50772,47 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3334 + "line": 3380 + } + }, + { + "name": "ImGui_IsWindowInBeginStack", + "original_fully_qualified_name": "ImGui::IsWindowInBeginStack", + "return_type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "arguments": [ + { + "name": "window", + "type": { + "declaration": "ImGuiWindow*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiWindow" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3381 } }, { @@ -49774,7 +50868,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3335 + "line": 3382 } }, { @@ -49830,7 +50924,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3336 + "line": 3383 } }, { @@ -49870,7 +50964,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3337 + "line": 3384 } }, { @@ -49937,7 +51031,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3338 + "line": 3385 } }, { @@ -50004,7 +51098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3339 + "line": 3386 } }, { @@ -50071,7 +51165,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3340 + "line": 3387 } }, { @@ -50137,7 +51231,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3341 + "line": 3388 } }, { @@ -50177,7 +51271,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3342 + "line": 3389 } }, { @@ -50236,7 +51330,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3343 + "line": 3390 } }, { @@ -50289,7 +51383,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3344 + "line": 3391 } }, { @@ -50342,7 +51436,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3345 + "line": 3392 } }, { @@ -50395,7 +51489,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3346 + "line": 3393 } }, { @@ -50448,7 +51542,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3347 + "line": 3394 } }, { @@ -50507,7 +51601,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3350 + "line": 3397 } }, { @@ -50592,7 +51686,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3351 + "line": 3398 } }, { @@ -50632,7 +51726,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3352 + "line": 3399 } }, { @@ -50672,7 +51766,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3353 + "line": 3400 } }, { @@ -50712,7 +51806,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3354 + "line": 3401 } }, { @@ -50768,7 +51862,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3355 + "line": 3402 } }, { @@ -50808,7 +51902,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3356 + "line": 3403 } }, { @@ -50851,7 +51945,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3357 + "line": 3404 } }, { @@ -50893,7 +51987,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3360 + "line": 3407 } }, { @@ -50939,7 +52033,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3363 + "line": 3410 } }, { @@ -50979,7 +52073,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3364 + "line": 3411 } }, { @@ -51019,7 +52113,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3365 + "line": 3412 } }, { @@ -51059,7 +52153,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3366 + "line": 3413 } }, { @@ -51125,7 +52219,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3367 + "line": 3414 } }, { @@ -51162,7 +52256,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3368 + "line": 3415 } }, { @@ -51199,7 +52293,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3369 + "line": 3416 } }, { @@ -51222,7 +52316,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3370 + "line": 3417 } }, { @@ -51259,7 +52353,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3371 + "line": 3418 } }, { @@ -51285,7 +52379,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3372 + "line": 3419 } }, { @@ -51308,7 +52402,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3373 + "line": 3420 } }, { @@ -51331,7 +52425,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3374 + "line": 3421 } }, { @@ -51374,7 +52468,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3375 + "line": 3422 } }, { @@ -51446,7 +52540,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3376 + "line": 3423 } }, { @@ -51474,7 +52568,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3379 + "line": 3426 } }, { @@ -51500,7 +52594,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3380 + "line": 3427 } }, { @@ -51542,7 +52636,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3383 + "line": 3430 } }, { @@ -51579,7 +52673,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3384 + "line": 3431 } }, { @@ -51667,7 +52761,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3385 + "line": 3432 } }, { @@ -51707,7 +52801,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3386 + "line": 3433 } }, { @@ -51776,7 +52870,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3387 + "line": 3434 } }, { @@ -51799,7 +52893,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3388 + "line": 3435 } }, { @@ -51822,7 +52916,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3389 + "line": 3436 } }, { @@ -51845,7 +52939,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3390 + "line": 3437 } }, { @@ -51909,7 +53003,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3393 + "line": 3440 } }, { @@ -51962,7 +53056,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3394 + "line": 3441 } }, { @@ -52015,7 +53109,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3395 + "line": 3442 } }, { @@ -52112,7 +53206,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3398 + "line": 3445 } }, { @@ -52165,7 +53259,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3399 + "line": 3446 } }, { @@ -52205,7 +53299,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3400 + "line": 3447 } }, { @@ -52261,7 +53355,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3401 + "line": 3448 } }, { @@ -52317,7 +53411,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3402 + "line": 3449 } }, { @@ -52363,7 +53457,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3403 + "line": 3450 } }, { @@ -52403,7 +53497,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3404 + "line": 3451 } }, { @@ -52431,7 +53525,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3407 + "line": 3454 } }, { @@ -52471,7 +53565,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3408 + "line": 3455 } }, { @@ -52494,7 +53588,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3409 + "line": 3456 } }, { @@ -52537,7 +53631,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3410 + "line": 3457 } }, { @@ -52580,7 +53674,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3411 + "line": 3458 } }, { @@ -52626,7 +53720,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3412 + "line": 3459 } }, { @@ -52677,7 +53771,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3415 + "line": 3462 } }, { @@ -52717,7 +53811,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3416 + "line": 3463 } }, { @@ -52760,7 +53854,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3417 + "line": 3464 } }, { @@ -52803,7 +53897,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3418 + "line": 3465 } }, { @@ -52864,7 +53958,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3421 + "line": 3468 } }, { @@ -52907,7 +54001,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3422 + "line": 3469 } }, { @@ -52965,7 +54059,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3425 + "line": 3472 } }, { @@ -53018,7 +54112,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3426 + "line": 3473 } }, { @@ -53084,7 +54178,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3427 + "line": 3474 } }, { @@ -53150,7 +54244,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3428 + "line": 3475 } }, { @@ -53193,7 +54287,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3431 + "line": 3478 } }, { @@ -53260,7 +54354,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3432 + "line": 3479 } }, { @@ -53327,7 +54421,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3433 + "line": 3480 } }, { @@ -53385,7 +54479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3435 + "line": 3482 } }, { @@ -53413,7 +54507,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3439 + "line": 3486 } }, { @@ -53436,7 +54530,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3440 + "line": 3487 } }, { @@ -53459,7 +54553,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3441 + "line": 3488 } }, { @@ -53482,7 +54576,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3442 + "line": 3489 } }, { @@ -53535,7 +54629,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3443 + "line": 3490 } }, { @@ -53588,7 +54682,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3444 + "line": 3491 } }, { @@ -53611,7 +54705,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3445 + "line": 3492 } }, { @@ -53634,7 +54728,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3446 + "line": 3493 } }, { @@ -53671,7 +54765,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3447 + "line": 3494 } }, { @@ -53708,7 +54802,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3448 + "line": 3495 } }, { @@ -53748,7 +54842,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3449 + "line": 3496 } }, { @@ -53788,7 +54882,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3450 + "line": 3497 } }, { @@ -53863,7 +54957,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3451 + "line": 3498 } }, { @@ -53913,7 +55007,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3452 + "line": 3499 } }, { @@ -53956,7 +55050,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3455 + "line": 3502 } }, { @@ -54007,7 +55101,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3455 + "line": 3502 } }, { @@ -54047,7 +55141,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3456 + "line": 3503 } }, { @@ -54101,7 +55195,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3456 + "line": 3503 } }, { @@ -54154,7 +55248,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3457 + "line": 3504 } }, { @@ -54238,7 +55332,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3457 + "line": 3504 } }, { @@ -54301,7 +55395,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3458 + "line": 3505 } }, { @@ -54355,7 +55449,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3459 + "line": 3506 } }, { @@ -54405,7 +55499,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3460 + "line": 3507 } }, { @@ -54481,7 +55575,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3461 + "line": 3508 } }, { @@ -54544,7 +55638,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3462 + "line": 3509 } }, { @@ -54594,7 +55688,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3463 + "line": 3510 } }, { @@ -54644,7 +55738,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3464 + "line": 3511 } }, { @@ -54723,7 +55817,102 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3465 + "line": 3512 + } + }, + { + "name": "ImGui_CalcClipRectVisibleItemsY", + "original_fully_qualified_name": "ImGui::CalcClipRectVisibleItemsY", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "clip_rect", + "type": { + "declaration": "ImRect", + "description": { + "kind": "User", + "name": "ImRect" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "pos", + "type": { + "declaration": "ImVec2", + "description": { + "kind": "User", + "name": "ImVec2" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "items_height", + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "out_visible_start", + "type": { + "declaration": "int*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "int" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "out_visible_end", + "type": { + "declaration": "int*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "Builtin", + "builtin_type": "int" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3513 } }, { @@ -54771,7 +55960,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3468 + "line": 3516 } }, { @@ -54794,7 +55983,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3469 + "line": 3517 } }, { @@ -54817,7 +56006,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3470 + "line": 3518 } }, { @@ -54873,7 +56062,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3473 + "line": 3521 } }, { @@ -54899,7 +56088,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3474 + "line": 3522 } }, { @@ -54940,7 +56129,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3474 + "line": 3522 } }, { @@ -55005,7 +56194,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3475 + "line": 3523 } }, { @@ -55087,7 +56276,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3475 + "line": 3523 } }, { @@ -55149,7 +56338,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3476 + "line": 3524 } }, { @@ -55249,7 +56438,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3479 + "line": 3527 } }, { @@ -55304,7 +56493,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3482 + "line": 3530 } }, { @@ -55373,7 +56562,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3483 + "line": 3531 } }, { @@ -55413,7 +56602,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3484 + "line": 3532 } }, { @@ -55464,7 +56653,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3484 + "line": 3532 } }, { @@ -55514,7 +56703,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3485 + "line": 3533 } }, { @@ -55567,7 +56756,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3486 + "line": 3534 } }, { @@ -55590,7 +56779,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3487 + "line": 3535 } }, { @@ -55640,7 +56829,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3488 + "line": 3536 } }, { @@ -55680,7 +56869,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3489 + "line": 3537 } }, { @@ -55706,7 +56895,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3490 + "line": 3538 } }, { @@ -55732,7 +56921,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3491 + "line": 3539 } }, { @@ -55775,7 +56964,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3492 + "line": 3540 } }, { @@ -55815,7 +57004,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3493 + "line": 3541 } }, { @@ -55920,7 +57109,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3494 + "line": 3542 } }, { @@ -55975,7 +57164,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3497 + "line": 3545 } }, { @@ -55998,7 +57187,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3498 + "line": 3546 } }, { @@ -56101,7 +57290,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3501 + "line": 3549 } }, { @@ -56166,7 +57355,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3502 + "line": 3550 } }, { @@ -56242,7 +57431,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3502 + "line": 3550 } }, { @@ -56307,7 +57496,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3503 + "line": 3551 } }, { @@ -56417,7 +57606,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3503 + "line": 3551 } }, { @@ -56485,7 +57674,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3506 + "line": 3554 } }, { @@ -56508,7 +57697,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3507 + "line": 3555 } }, { @@ -56531,7 +57720,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3508 + "line": 3556 } }, { @@ -56589,7 +57778,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3511 + "line": 3559 } }, { @@ -56612,7 +57801,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3512 + "line": 3560 } }, { @@ -56635,7 +57824,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3513 + "line": 3561 } }, { @@ -56711,7 +57900,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3514 + "line": 3562 } }, { @@ -56787,7 +57976,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3515 + "line": 3563 } }, { @@ -56827,7 +58016,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3516 + "line": 3564 } }, { @@ -56886,7 +58075,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3517 + "line": 3565 } }, { @@ -56909,7 +58098,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3518 + "line": 3566 } }, { @@ -56932,7 +58121,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3519 + "line": 3567 } }, { @@ -56985,7 +58174,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3520 + "line": 3568 } }, { @@ -57022,7 +58211,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3521 + "line": 3569 } }, { @@ -57059,7 +58248,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3522 + "line": 3570 } }, { @@ -57082,7 +58271,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3523 + "line": 3571 } }, { @@ -57105,7 +58294,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3524 + "line": 3572 } }, { @@ -57145,7 +58334,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3525 + "line": 3573 } }, { @@ -57221,7 +58410,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3526 + "line": 3574 } }, { @@ -57258,7 +58447,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3527 + "line": 3575 } }, { @@ -57289,7 +58478,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3532 + "line": 3580 } }, { @@ -57329,7 +58518,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3533 + "line": 3581 } }, { @@ -57372,7 +58561,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3537 + "line": 3585 } }, { @@ -57409,7 +58598,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3538 + "line": 3586 } }, { @@ -57446,7 +58635,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3539 + "line": 3587 } }, { @@ -57483,7 +58672,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3540 + "line": 3588 } }, { @@ -57520,7 +58709,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3541 + "line": 3589 } }, { @@ -57557,7 +58746,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3542 + "line": 3590 } }, { @@ -57594,7 +58783,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3543 + "line": 3591 } }, { @@ -57631,7 +58820,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3544 + "line": 3592 } }, { @@ -57668,7 +58857,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3545 + "line": 3593 } }, { @@ -57705,7 +58894,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3546 + "line": 3594 } }, { @@ -57761,7 +58950,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3555 + "line": 3603 } }, { @@ -57801,7 +58990,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3556 + "line": 3604 } }, { @@ -57844,7 +59033,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3557 + "line": 3605 } }, { @@ -57881,7 +59070,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3558 + "line": 3606 } }, { @@ -57921,7 +59110,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3559 + "line": 3607 } }, { @@ -57972,7 +59161,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3559 + "line": 3607 } }, { @@ -58048,7 +59237,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3560 + "line": 3608 } }, { @@ -58085,7 +59274,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3561 + "line": 3609 } }, { @@ -58161,7 +59350,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3562 + "line": 3610 } }, { @@ -58230,7 +59419,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3563 + "line": 3611 } }, { @@ -58267,7 +59456,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3564 + "line": 3612 } }, { @@ -58290,7 +59479,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3565 + "line": 3613 } }, { @@ -58327,7 +59516,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3566 + "line": 3614 } }, { @@ -58379,7 +59568,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3579 + "line": 3627 } }, { @@ -58443,7 +59632,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3580 + "line": 3628 } }, { @@ -58507,7 +59696,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3581 + "line": 3629 } }, { @@ -58560,7 +59749,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3582 + "line": 3630 } }, { @@ -58613,7 +59802,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3583 + "line": 3631 } }, { @@ -58669,7 +59858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3584 + "line": 3632 } }, { @@ -58729,7 +59918,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3592 + "line": 3640 } }, { @@ -58782,7 +59971,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3593 + "line": 3641 } }, { @@ -58844,12 +60033,12 @@ "is_unformatted_helper": false, "is_static": false, "comments": { - "attached": "// Important: when transitioning from old to new IsKeyPressed(): old API has \"bool repeat = true\", so would default to repeat. New API requiress explicit ImGuiInputFlags_Repeat." + "attached": "// Important: when transitioning from old to new IsKeyPressed(): old API has \"bool repeat = true\", so would default to repeat. New API requires explicit ImGuiInputFlags_Repeat." }, "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3593 + "line": 3641 } }, { @@ -58899,7 +60088,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3594 + "line": 3642 } }, { @@ -58952,7 +60141,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3595 + "line": 3643 } }, { @@ -59016,7 +60205,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3595 + "line": 3643 } }, { @@ -59066,7 +60255,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3596 + "line": 3644 } }, { @@ -59119,7 +60308,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3597 + "line": 3645 } }, { @@ -59183,7 +60372,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3597 + "line": 3645 } }, { @@ -59233,7 +60422,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3598 + "line": 3646 } }, { @@ -59283,7 +60472,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3599 + "line": 3647 } }, { @@ -59364,7 +60553,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3615 + "line": 3663 } }, { @@ -59430,7 +60619,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3616 + "line": 3664 } }, { @@ -59480,7 +60669,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3617 + "line": 3665 } }, { @@ -59520,7 +60709,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3618 + "line": 3666 } }, { @@ -59566,7 +60755,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3622 + "line": 3670 } }, { @@ -59606,7 +60795,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3623 + "line": 3671 } }, { @@ -59675,7 +60864,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3624 + "line": 3672 } }, { @@ -59715,7 +60904,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3625 + "line": 3673 } }, { @@ -59755,7 +60944,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3626 + "line": 3674 } }, { @@ -59795,7 +60984,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3627 + "line": 3675 } }, { @@ -59835,7 +61024,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3628 + "line": 3676 } }, { @@ -59875,7 +61064,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3629 + "line": 3677 } }, { @@ -60002,7 +61191,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3630 + "line": 3678 } }, { @@ -60058,7 +61247,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3631 + "line": 3679 } }, { @@ -60114,7 +61303,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3632 + "line": 3680 } }, { @@ -60173,7 +61362,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3633 + "line": 3681 } }, { @@ -60243,7 +61432,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3633 + "line": 3681 } }, { @@ -60299,7 +61488,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3634 + "line": 3682 } }, { @@ -60429,7 +61618,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3635 + "line": 3683 } }, { @@ -60485,7 +61674,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3636 + "line": 3684 } }, { @@ -60557,7 +61746,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3637 + "line": 3685 } }, { @@ -60597,7 +61786,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3638 + "line": 3686 } }, { @@ -60620,7 +61809,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3639 + "line": 3687 } }, { @@ -60663,7 +61852,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3640 + "line": 3688 } }, { @@ -60719,7 +61908,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3641 + "line": 3689 } }, { @@ -60762,7 +61951,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3642 + "line": 3690 } }, { @@ -60805,7 +61994,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3643 + "line": 3691 } }, { @@ -60831,7 +62020,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3644 + "line": 3692 } }, { @@ -60871,7 +62060,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3645 + "line": 3693 } }, { @@ -60927,7 +62116,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3646 + "line": 3694 } }, { @@ -60967,7 +62156,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3647 + "line": 3695 } }, { @@ -61007,7 +62196,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3648 + "line": 3696 } }, { @@ -61073,7 +62262,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3649 + "line": 3697 } }, { @@ -61142,7 +62331,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3660 + "line": 3708 } }, { @@ -61182,7 +62371,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3661 + "line": 3709 } }, { @@ -61222,7 +62411,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3662 + "line": 3710 } }, { @@ -61248,7 +62437,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3663 + "line": 3711 } }, { @@ -61300,7 +62489,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3663 + "line": 3711 } }, { @@ -61340,7 +62529,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3664 + "line": 3712 } }, { @@ -61380,7 +62569,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3665 + "line": 3713 } }, { @@ -61431,7 +62620,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3665 + "line": 3713 } }, { @@ -61471,7 +62660,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3666 + "line": 3714 } }, { @@ -61521,7 +62710,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3667 + "line": 3715 } }, { @@ -61571,7 +62760,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3668 + "line": 3716 } }, { @@ -61669,7 +62858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3669 + "line": 3717 } }, { @@ -61735,7 +62924,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3670 + "line": 3718 } }, { @@ -61801,7 +62990,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3671 + "line": 3719 } }, { @@ -61863,7 +63052,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3672 + "line": 3720 } }, { @@ -61900,7 +63089,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3673 + "line": 3721 } }, { @@ -61949,7 +63138,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3683 + "line": 3731 } }, { @@ -61972,7 +63161,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3684 + "line": 3732 } }, { @@ -61998,7 +63187,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3685 + "line": 3733 } }, { @@ -62026,7 +63215,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3688 + "line": 3736 } }, { @@ -62076,7 +63265,110 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3689 + "line": 3737 + } + }, + { + "name": "ImGui_BeginDragDropTargetViewport", + "original_fully_qualified_name": "ImGui::BeginDragDropTargetViewport", + "return_type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "arguments": [ + { + "name": "viewport", + "type": { + "declaration": "ImGuiViewport*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiViewport" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": true, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "comments": { + "attached": "// Implied p_bb = NULL" + }, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3738 + } + }, + { + "name": "ImGui_BeginDragDropTargetViewportEx", + "original_fully_qualified_name": "ImGui::BeginDragDropTargetViewport", + "return_type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "arguments": [ + { + "name": "viewport", + "type": { + "declaration": "ImGuiViewport*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiViewport" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "p_bb", + "type": { + "declaration": "const ImRect*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImRect", + "storage_classes": [ + "const" + ] + } + } + }, + "is_array": false, + "is_varargs": false, + "default_value": "NULL", + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3738 } }, { @@ -62099,7 +63391,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3690 + "line": 3739 } }, { @@ -62122,12 +63414,12 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3691 + "line": 3740 } }, { - "name": "ImGui_RenderDragDropTargetRect", - "original_fully_qualified_name": "ImGui::RenderDragDropTargetRect", + "name": "ImGui_RenderDragDropTargetRectForItem", + "original_fully_qualified_name": "ImGui::RenderDragDropTargetRectForItem", "return_type": { "declaration": "void", "description": { @@ -62148,19 +63440,6 @@ "is_array": false, "is_varargs": false, "is_instance_pointer": false - }, - { - "name": "item_clip_rect", - "type": { - "declaration": "ImRect", - "description": { - "kind": "User", - "name": "ImRect" - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": false } ], "is_default_argument_helper": false, @@ -62172,7 +63451,60 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3692 + "line": 3741 + } + }, + { + "name": "ImGui_RenderDragDropTargetRectEx", + "original_fully_qualified_name": "ImGui::RenderDragDropTargetRectEx", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "draw_list", + "type": { + "declaration": "ImDrawList*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImDrawList" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "bb", + "type": { + "declaration": "ImRect", + "description": { + "kind": "User", + "name": "ImRect" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3742 } }, { @@ -62206,7 +63538,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3697 + "line": 3747 } }, { @@ -62247,7 +63579,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3697 + "line": 3747 } }, { @@ -62416,7 +63748,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3698 + "line": 3748 } }, { @@ -62585,7 +63917,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3699 + "line": 3749 } }, { @@ -62741,7 +64073,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3700 + "line": 3750 } }, { @@ -62825,7 +64157,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3703 + "line": 3753 } }, { @@ -62875,7 +64207,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3704 + "line": 3754 } }, { @@ -62949,7 +64281,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3707 + "line": 3757 } }, { @@ -63018,7 +64350,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3708 + "line": 3758 } }, { @@ -63071,7 +64403,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3709 + "line": 3759 } }, { @@ -63163,7 +64495,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3710 + "line": 3760 } }, { @@ -63203,7 +64535,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3711 + "line": 3761 } }, { @@ -63243,7 +64575,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3712 + "line": 3762 } }, { @@ -63301,7 +64633,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3715 + "line": 3765 } }, { @@ -63374,7 +64706,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3716 + "line": 3766 } }, { @@ -63400,7 +64732,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3717 + "line": 3767 } }, { @@ -63437,7 +64769,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3718 + "line": 3768 } }, { @@ -63460,7 +64792,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3719 + "line": 3769 } }, { @@ -63483,7 +64815,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3720 + "line": 3770 } }, { @@ -63539,7 +64871,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3721 + "line": 3771 } }, { @@ -63595,7 +64927,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3722 + "line": 3772 } }, { @@ -63651,7 +64983,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3723 + "line": 3773 } }, { @@ -63707,7 +65039,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3724 + "line": 3774 } }, { @@ -63736,7 +65068,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3727 + "line": 3777 } }, { @@ -63774,7 +65106,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3727 + "line": 3777 } }, { @@ -63824,7 +65156,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3728 + "line": 3778 } }, { @@ -63887,7 +65219,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3729 + "line": 3779 } }, { @@ -63913,7 +65245,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3730 + "line": 3780 } }, { @@ -63936,7 +65268,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3731 + "line": 3781 } }, { @@ -63959,7 +65291,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3732 + "line": 3782 } }, { @@ -63982,7 +65314,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3733 + "line": 3783 } }, { @@ -64005,7 +65337,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3734 + "line": 3784 } }, { @@ -64042,7 +65374,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3735 + "line": 3785 } }, { @@ -64065,7 +65397,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3736 + "line": 3786 } }, { @@ -64160,7 +65492,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3737 + "line": 3787 } }, { @@ -64191,7 +65523,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3740 + "line": 3790 } }, { @@ -64231,7 +65563,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3741 + "line": 3791 } }, { @@ -64317,7 +65649,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3742 + "line": 3792 } }, { @@ -64428,7 +65760,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3742 + "line": 3792 } }, { @@ -64481,7 +65813,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3743 + "line": 3793 } }, { @@ -64521,7 +65853,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3744 + "line": 3794 } }, { @@ -64561,7 +65893,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3745 + "line": 3795 } }, { @@ -64601,7 +65933,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3746 + "line": 3796 } }, { @@ -64641,7 +65973,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3747 + "line": 3797 } }, { @@ -64681,7 +66013,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3748 + "line": 3798 } }, { @@ -64721,7 +66053,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3749 + "line": 3799 } }, { @@ -64774,7 +66106,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3750 + "line": 3800 } }, { @@ -64814,7 +66146,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3751 + "line": 3801 } }, { @@ -64854,7 +66186,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3752 + "line": 3802 } }, { @@ -64910,7 +66242,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3753 + "line": 3803 } }, { @@ -64963,7 +66295,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3754 + "line": 3804 } }, { @@ -65003,7 +66335,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3755 + "line": 3805 } }, { @@ -65043,7 +66375,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3756 + "line": 3806 } }, { @@ -65083,7 +66415,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3757 + "line": 3807 } }, { @@ -65139,7 +66471,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3758 + "line": 3808 } }, { @@ -65195,7 +66527,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3759 + "line": 3809 } }, { @@ -65235,7 +66567,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3760 + "line": 3810 } }, { @@ -65275,7 +66607,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3761 + "line": 3811 } }, { @@ -65328,7 +66660,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3762 + "line": 3812 } }, { @@ -65368,7 +66700,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3763 + "line": 3813 } }, { @@ -65424,7 +66756,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3764 + "line": 3814 } }, { @@ -65486,7 +66818,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3765 + "line": 3815 } }, { @@ -65542,7 +66874,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3766 + "line": 3816 } }, { @@ -65609,7 +66941,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3766 + "line": 3816 } }, { @@ -65665,7 +66997,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3767 + "line": 3817 } }, { @@ -65718,7 +67050,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3768 + "line": 3818 } }, { @@ -65758,7 +67090,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3769 + "line": 3819 } }, { @@ -65798,7 +67130,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3770 + "line": 3820 } }, { @@ -65838,7 +67170,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3771 + "line": 3821 } }, { @@ -65878,7 +67210,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3772 + "line": 3822 } }, { @@ -65901,7 +67233,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3773 + "line": 3823 } }, { @@ -65946,7 +67278,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3776 + "line": 3826 } }, { @@ -65986,7 +67318,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3777 + "line": 3827 } }, { @@ -66026,7 +67358,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3778 + "line": 3828 } }, { @@ -66069,7 +67401,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3779 + "line": 3829 } }, { @@ -66092,7 +67424,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3780 + "line": 3830 } }, { @@ -66145,7 +67477,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3781 + "line": 3831 } }, { @@ -66185,7 +67517,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3782 + "line": 3832 } }, { @@ -66216,7 +67548,87 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3785 + "line": 3835 + } + }, + { + "name": "ImGui_TabBarFindByID", + "original_fully_qualified_name": "ImGui::TabBarFindByID", + "return_type": { + "declaration": "ImGuiTabBar*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiTabBar" + } + } + }, + "arguments": [ + { + "name": "id", + "type": { + "declaration": "ImGuiID", + "description": { + "kind": "User", + "name": "ImGuiID" + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3836 + } + }, + { + "name": "ImGui_TabBarRemove", + "original_fully_qualified_name": "ImGui::TabBarRemove", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "tab_bar", + "type": { + "declaration": "ImGuiTabBar*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiTabBar" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 3837 } }, { @@ -66282,7 +67694,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3786 + "line": 3838 } }, { @@ -66338,7 +67750,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3787 + "line": 3839 } }, { @@ -66394,7 +67806,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3788 + "line": 3840 } }, { @@ -66437,7 +67849,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3789 + "line": 3841 } }, { @@ -66480,7 +67892,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3790 + "line": 3842 } }, { @@ -66536,7 +67948,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3791 + "line": 3843 } }, { @@ -66598,7 +68010,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3792 + "line": 3844 } }, { @@ -66667,7 +68079,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3793 + "line": 3845 } }, { @@ -66720,7 +68132,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3794 + "line": 3846 } }, { @@ -66776,7 +68188,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3795 + "line": 3847 } }, { @@ -66832,7 +68244,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3796 + "line": 3848 } }, { @@ -66891,7 +68303,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3797 + "line": 3849 } }, { @@ -66960,7 +68372,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3798 + "line": 3850 } }, { @@ -67029,7 +68441,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3799 + "line": 3851 } }, { @@ -67069,7 +68481,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3800 + "line": 3852 } }, { @@ -67173,7 +68585,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3801 + "line": 3853 } }, { @@ -67242,7 +68654,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3802 + "line": 3854 } }, { @@ -67298,7 +68710,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3803 + "line": 3855 } }, { @@ -67338,7 +68750,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3804 + "line": 3856 } }, { @@ -67417,7 +68829,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3805 + "line": 3857 } }, { @@ -67586,7 +68998,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3806 + "line": 3858 } }, { @@ -67650,7 +69062,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3811 + "line": 3863 } }, { @@ -67740,7 +69152,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3811 + "line": 3863 } }, { @@ -67828,7 +69240,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3812 + "line": 3864 } }, { @@ -67938,7 +69350,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3813 + "line": 3865 } }, { @@ -68079,7 +69491,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3813 + "line": 3865 } }, { @@ -68205,7 +69617,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3814 + "line": 3866 } }, { @@ -68362,7 +69774,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3814 + "line": 3866 } }, { @@ -68498,7 +69910,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3815 + "line": 3867 } }, { @@ -68564,7 +69976,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3816 + "line": 3868 } }, { @@ -68655,7 +70067,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3816 + "line": 3868 } }, { @@ -68708,7 +70120,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3817 + "line": 3869 } }, { @@ -68772,7 +70184,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3817 + "line": 3869 } }, { @@ -68880,7 +70292,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3818 + "line": 3870 } }, { @@ -69013,7 +70425,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3818 + "line": 3870 } }, { @@ -69066,7 +70478,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3819 + "line": 3871 } }, { @@ -69133,7 +70545,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3819 + "line": 3871 } }, { @@ -69192,7 +70604,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3821 + "line": 3873 } }, { @@ -69265,7 +70677,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3821 + "line": 3873 } }, { @@ -69317,7 +70729,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3823 + "line": 3875 } }, { @@ -69389,7 +70801,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3823 + "line": 3875 } }, { @@ -69491,7 +70903,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3824 + "line": 3876 } }, { @@ -69576,7 +70988,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3827 + "line": 3879 } }, { @@ -69669,7 +71081,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3827 + "line": 3879 } }, { @@ -69735,7 +71147,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3828 + "line": 3880 } }, { @@ -69814,7 +71226,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3829 + "line": 3881 } }, { @@ -69906,7 +71318,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3830 + "line": 3882 } }, { @@ -69985,7 +71397,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3831 + "line": 3883 } }, { @@ -70090,7 +71502,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3832 + "line": 3884 } }, { @@ -70182,7 +71594,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3833 + "line": 3885 } }, { @@ -70245,7 +71657,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3834 + "line": 3886 } }, { @@ -70294,7 +71706,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3837 + "line": 3889 } }, { @@ -70371,7 +71783,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3837 + "line": 3889 } }, { @@ -70450,7 +71862,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3838 + "line": 3890 } }, { @@ -70533,7 +71945,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3839 + "line": 3891 } }, { @@ -70582,7 +71994,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3842 + "line": 3894 } }, { @@ -70653,7 +72065,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3842 + "line": 3894 } }, { @@ -70736,7 +72148,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3843 + "line": 3895 } }, { @@ -70865,7 +72277,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3844 + "line": 3896 } }, { @@ -70905,7 +72317,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3845 + "line": 3897 } }, { @@ -70956,7 +72368,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3845 + "line": 3897 } }, { @@ -71044,7 +72456,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3846 + "line": 3898 } }, { @@ -71116,7 +72528,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3847 + "line": 3899 } }, { @@ -71188,7 +72600,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3848 + "line": 3900 } }, { @@ -71243,7 +72655,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3851 + "line": 3903 } }, { @@ -71309,7 +72721,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3852 + "line": 3904 } }, { @@ -71346,7 +72758,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3853 + "line": 3905 } }, { @@ -71454,7 +72866,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3854 + "line": 3906 } }, { @@ -71573,7 +72985,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3854 + "line": 3906 } }, { @@ -71626,7 +73038,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3855 + "line": 3907 } }, { @@ -71679,7 +73091,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3856 + "line": 3908 } }, { @@ -71735,7 +73147,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3857 + "line": 3909 } }, { @@ -71788,7 +73200,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3858 + "line": 3910 } }, { @@ -71889,7 +73301,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3861 + "line": 3913 } }, { @@ -72038,7 +73450,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3862 + "line": 3914 } }, { @@ -72203,7 +73615,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3863 + "line": 3915 } }, { @@ -72327,7 +73739,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3864 + "line": 3916 } }, { @@ -72490,7 +73902,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3864 + "line": 3916 } }, { @@ -72565,7 +73977,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3867 + "line": 3919 } }, { @@ -72654,7 +74066,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3867 + "line": 3919 } }, { @@ -72691,7 +74103,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3868 + "line": 3920 } }, { @@ -72734,7 +74146,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3869 + "line": 3921 } }, { @@ -72771,7 +74183,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3870 + "line": 3922 } }, { @@ -72808,7 +74220,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3871 + "line": 3923 } }, { @@ -72858,7 +74270,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3872 + "line": 3924 } }, { @@ -72911,7 +74323,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3873 + "line": 3925 } }, { @@ -72959,7 +74371,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3886 + "line": 3938 } }, { @@ -73063,7 +74475,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3887 + "line": 3939 } }, { @@ -73167,7 +74579,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3888 + "line": 3940 } }, { @@ -73261,7 +74673,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3889 + "line": 3941 } }, { @@ -73369,7 +74781,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3889 + "line": 3941 } }, { @@ -73444,7 +74856,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3890 + "line": 3942 } }, { @@ -73535,7 +74947,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3891 + "line": 3943 } }, { @@ -73591,7 +75003,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3892 + "line": 3944 } }, { @@ -73714,7 +75126,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3895 + "line": 3947 } }, { @@ -73862,7 +75274,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3895 + "line": 3947 } }, { @@ -73899,7 +75311,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3896 + "line": 3948 } }, { @@ -74010,7 +75422,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3897 + "line": 3949 } }, { @@ -74130,7 +75542,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3898 + "line": 3950 } }, { @@ -74287,7 +75699,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3898 + "line": 3950 } }, { @@ -74324,7 +75736,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3899 + "line": 3951 } }, { @@ -74377,7 +75789,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3901 + "line": 3953 } }, { @@ -74403,7 +75815,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3902 + "line": 3954 } }, { @@ -74483,7 +75895,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3905 + "line": 3957 } }, { @@ -74539,7 +75951,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3906 + "line": 3958 } }, { @@ -74595,7 +76007,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3907 + "line": 3959 } }, { @@ -74841,7 +76253,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3910 + "line": 3962 } }, { @@ -74964,7 +76376,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3913 + "line": 3965 } }, { @@ -75095,7 +76507,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3914 + "line": 3966 } }, { @@ -75213,7 +76625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3915 + "line": 3967 } }, { @@ -75241,7 +76653,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3918 + "line": 3970 } }, { @@ -75281,7 +76693,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3919 + "line": 3971 } }, { @@ -75321,7 +76733,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3920 + "line": 3972 } }, { @@ -75369,7 +76781,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3923 + "line": 3975 } }, { @@ -75409,7 +76821,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3924 + "line": 3976 } }, { @@ -75452,7 +76864,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3925 + "line": 3977 } }, { @@ -75495,7 +76907,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3926 + "line": 3978 } }, { @@ -75518,7 +76930,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3927 + "line": 3979 } }, { @@ -75541,7 +76953,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3928 + "line": 3980 } }, { @@ -75564,7 +76976,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3929 + "line": 3981 } }, { @@ -75587,7 +76999,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3930 + "line": 3982 } }, { @@ -75675,7 +77087,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3933 + "line": 3985 } }, { @@ -75701,7 +77113,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3934 + "line": 3986 } }, { @@ -75739,7 +77151,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3934 + "line": 3986 } }, { @@ -75765,7 +77177,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3935 + "line": 3987 } }, { @@ -75803,7 +77215,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3935 + "line": 3987 } }, { @@ -75829,7 +77241,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3936 + "line": 3988 } }, { @@ -75867,7 +77279,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3936 + "line": 3988 } }, { @@ -75929,7 +77341,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3937 + "line": 3989 } }, { @@ -75969,7 +77381,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3938 + "line": 3990 } }, { @@ -76009,7 +77421,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3939 + "line": 3991 } }, { @@ -76032,7 +77444,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3940 + "line": 3992 } }, { @@ -76055,7 +77467,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3941 + "line": 3993 } }, { @@ -76117,7 +77529,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3942 + "line": 3994 } }, { @@ -76173,7 +77585,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3943 + "line": 3995 } }, { @@ -76213,7 +77625,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3944 + "line": 3996 } }, { @@ -76301,7 +77713,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3945 + "line": 3997 } }, { @@ -76341,7 +77753,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3946 + "line": 3998 } }, { @@ -76400,7 +77812,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3947 + "line": 3999 } }, { @@ -76494,7 +77906,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3948 + "line": 4000 } }, { @@ -76598,7 +78010,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3949 + "line": 4001 } }, { @@ -76638,7 +78050,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3950 + "line": 4002 } }, { @@ -76707,7 +78119,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3951 + "line": 4003 } }, { @@ -76766,7 +78178,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3952 + "line": 4004 } }, { @@ -76822,7 +78234,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3953 + "line": 4005 } }, { @@ -76898,7 +78310,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3953 + "line": 4005 } }, { @@ -76957,7 +78369,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3954 + "line": 4006 } }, { @@ -77016,7 +78428,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3955 + "line": 4007 } }, { @@ -77056,7 +78468,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3956 + "line": 4008 } }, { @@ -77096,7 +78508,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3957 + "line": 4009 } }, { @@ -77136,7 +78548,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3959 + "line": 4011 } }, { @@ -77176,7 +78588,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3960 + "line": 4012 } }, { @@ -77235,7 +78647,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3961 + "line": 4013 } }, { @@ -77275,7 +78687,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3962 + "line": 4014 } }, { @@ -77334,7 +78746,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3963 + "line": 4015 } }, { @@ -77406,7 +78818,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3964 + "line": 4016 } }, { @@ -77446,7 +78858,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3965 + "line": 4017 } }, { @@ -77518,7 +78930,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3966 + "line": 4018 } }, { @@ -77558,7 +78970,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3967 + "line": 4019 } }, { @@ -77627,7 +79039,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 3968 + "line": 4020 } }, { @@ -77662,7 +79074,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4014 + "line": 4066 } }, { @@ -77699,17 +79111,17 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4036 + "line": 4088 } }, { "name": "cImFontAtlasRectId_GetGeneration", "original_fully_qualified_name": "ImFontAtlasRectId_GetGeneration", "return_type": { - "declaration": "int", + "declaration": "unsigned int", "description": { "kind": "Builtin", - "builtin_type": "int" + "builtin_type": "unsigned_int" } }, "arguments": [ @@ -77736,7 +79148,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4037 + "line": 4089 } }, { @@ -77786,7 +79198,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4038 + "line": 4090 } }, { @@ -77826,7 +79238,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4110 + "line": 4162 } }, { @@ -77866,7 +79278,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4111 + "line": 4163 } }, { @@ -77906,7 +79318,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4112 + "line": 4164 } }, { @@ -77965,7 +79377,79 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4113 + "line": 4165 + } + }, + { + "name": "cImFontAtlasBuildNotifySetFont", + "original_fully_qualified_name": "ImFontAtlasBuildNotifySetFont", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "atlas", + "type": { + "declaration": "ImFontAtlas*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFontAtlas" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "old_font", + "type": { + "declaration": "ImFont*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFont" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + }, + { + "name": "new_font", + "type": { + "declaration": "ImFont*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImFont" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": false + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "is_internal": false, + "source_location": { + "filename": "imgui_internal.h", + "line": 4166 } }, { @@ -78005,7 +79489,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4114 + "line": 4167 } }, { @@ -78129,7 +79613,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4115 + "line": 4168 } }, { @@ -78172,7 +79656,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4116 + "line": 4169 } }, { @@ -78241,7 +79725,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4118 + "line": 4171 } }, { @@ -78281,7 +79765,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4119 + "line": 4172 } }, { @@ -78347,7 +79831,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4120 + "line": 4173 } }, { @@ -78390,7 +79874,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4121 + "line": 4174 } }, { @@ -78458,7 +79942,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4121 + "line": 4174 } }, { @@ -78498,7 +79982,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4122 + "line": 4175 } }, { @@ -78538,7 +80022,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4123 + "line": 4176 } }, { @@ -78610,7 +80094,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4125 + "line": 4178 } }, { @@ -78653,7 +80137,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4126 + "line": 4179 } }, { @@ -78741,7 +80225,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4127 + "line": 4180 } }, { @@ -78794,7 +80278,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4128 + "line": 4181 } }, { @@ -78850,7 +80334,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4130 + "line": 4183 } }, { @@ -78922,7 +80406,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4131 + "line": 4184 } }, { @@ -78978,7 +80462,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4132 + "line": 4185 } }, { @@ -79037,7 +80521,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4133 + "line": 4186 } }, { @@ -79093,7 +80577,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4134 + "line": 4187 } }, { @@ -79162,7 +80646,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4135 + "line": 4188 } }, { @@ -79225,7 +80709,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4137 + "line": 4190 } }, { @@ -79310,7 +80794,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4138 + "line": 4191 } }, { @@ -79395,7 +80879,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4139 + "line": 4192 } }, { @@ -79493,7 +80977,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4140 + "line": 4193 } }, { @@ -79565,7 +81049,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4141 + "line": 4194 } }, { @@ -79659,7 +81143,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4142 + "line": 4195 } }, { @@ -79757,7 +81241,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4143 + "line": 4196 } }, { @@ -79845,7 +81329,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4144 + "line": 4197 } }, { @@ -79994,7 +81478,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4145 + "line": 4198 } }, { @@ -80034,7 +81518,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4147 + "line": 4200 } }, { @@ -80103,7 +81587,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4148 + "line": 4201 } }, { @@ -80186,7 +81670,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4148 + "line": 4201 } }, { @@ -80242,7 +81726,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4149 + "line": 4202 } }, { @@ -80298,7 +81782,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4150 + "line": 4203 } }, { @@ -80351,7 +81835,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4151 + "line": 4204 } }, { @@ -80417,7 +81901,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4153 + "line": 4206 } }, { @@ -80473,7 +81957,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4154 + "line": 4207 } }, { @@ -80529,7 +82013,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4155 + "line": 4208 } }, { @@ -80595,7 +82079,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4156 + "line": 4209 } }, { @@ -80635,7 +82119,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4157 + "line": 4210 } }, { @@ -80772,7 +82256,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4159 + "line": 4212 } }, { @@ -80812,7 +82296,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4160 + "line": 4213 } }, { @@ -80865,7 +82349,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4161 + "line": 4214 } }, { @@ -80970,7 +82454,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4162 + "line": 4215 } }, { @@ -81104,7 +82588,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4163 + "line": 4216 } }, { @@ -81212,7 +82696,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4164 + "line": 4217 } }, { @@ -81249,7 +82733,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4166 + "line": 4219 } }, { @@ -81292,7 +82776,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4167 + "line": 4220 } }, { @@ -81335,7 +82819,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4168 + "line": 4221 } }, { @@ -81381,7 +82865,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4171 + "line": 4224 } }, { @@ -81502,7 +82986,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4174 + "line": 4227 } }, { @@ -81596,7 +83080,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4181 + "line": 4234 } }, { @@ -81687,7 +83171,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4182 + "line": 4235 } }, { @@ -81759,7 +83243,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4183 + "line": 4236 } }, { @@ -81824,7 +83308,7 @@ "is_internal": false, "source_location": { "filename": "imgui_internal.h", - "line": 4184 + "line": 4237 } } ] diff --git a/src/cached/dcimgui_internal_imgui.json b/src/cached/dcimgui_internal_imgui.json index 22dc763..6d92f40 100644 --- a/src/cached/dcimgui_internal_imgui.json +++ b/src/cached/dcimgui_internal_imgui.json @@ -2,22 +2,22 @@ "defines": [ { "name": "IMGUI_VERSION", - "content": "\"1.92.2b\"", - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 31 - } - }, - { - "name": "IMGUI_VERSION_NUM", - "content": "19222", + "content": "\"1.92.5\"", "is_internal": false, "source_location": { "filename": "imgui.h", "line": 32 } }, + { + "name": "IMGUI_VERSION_NUM", + "content": "19250", + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 33 + } + }, { "name": "IMGUI_HAS_TABLE", "comments": { @@ -26,7 +26,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 33 + "line": 34 } }, { @@ -37,7 +37,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 34 + "line": 35 } }, { @@ -48,7 +48,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 35 + "line": 36 } }, { @@ -59,7 +59,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 36 + "line": 37 } }, { @@ -89,7 +89,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 87 + "line": 88 } }, { @@ -104,7 +104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 90 + "line": 91 } }, { @@ -119,7 +119,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 120 + "line": 126 } }, { @@ -134,7 +134,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 121 + "line": 127 } }, { @@ -148,7 +148,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 123 + "line": 129 } }, { @@ -162,7 +162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 124 + "line": 130 } }, { @@ -177,7 +177,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 342 + "line": 350 } }, { @@ -189,7 +189,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1538 + "line": 1563 } }, { @@ -201,7 +201,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1539 + "line": 1564 } }, { @@ -213,7 +213,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2785 + "line": 2819 } }, { @@ -231,7 +231,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2787 + "line": 2821 } }, { @@ -249,7 +249,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2789 + "line": 2823 } }, { @@ -261,125 +261,125 @@ } ], "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 2966 - } - }, - { - "name": "IM_COL32_R_SHIFT", - "content": "16", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3002 - } - }, - { - "name": "IM_COL32_G_SHIFT", - "content": "8", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3003 - } - }, - { - "name": "IM_COL32_B_SHIFT", - "content": "0", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3004 - } - }, - { - "name": "IM_COL32_A_SHIFT", - "content": "24", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3005 - } - }, - { - "name": "IM_COL32_A_MASK", - "content": "0xFF000000", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifdef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 3006 - } - }, - { - "name": "IM_COL32_R_SHIFT", - "content": "0", - "conditionals": [ - { - "condition": "ifndef", - "expression": "IM_COL32_R_SHIFT" - }, - { - "condition": "ifndef", - "expression": "IMGUI_USE_BGRA_PACKED_COLOR" - } - ], - "is_internal": false, "source_location": { "filename": "imgui.h", "line": 3008 } }, + { + "name": "IM_COL32_R_SHIFT", + "content": "16", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3044 + } + }, + { + "name": "IM_COL32_G_SHIFT", + "content": "8", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3045 + } + }, + { + "name": "IM_COL32_B_SHIFT", + "content": "0", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3046 + } + }, + { + "name": "IM_COL32_A_SHIFT", + "content": "24", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3047 + } + }, + { + "name": "IM_COL32_A_MASK", + "content": "0xFF000000", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifdef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3048 + } + }, + { + "name": "IM_COL32_R_SHIFT", + "content": "0", + "conditionals": [ + { + "condition": "ifndef", + "expression": "IM_COL32_R_SHIFT" + }, + { + "condition": "ifndef", + "expression": "IMGUI_USE_BGRA_PACKED_COLOR" + } + ], + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3050 + } + }, { "name": "IM_COL32_G_SHIFT", "content": "8", @@ -396,7 +396,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3009 + "line": 3051 } }, { @@ -415,7 +415,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3010 + "line": 3052 } }, { @@ -434,7 +434,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3011 + "line": 3053 } }, { @@ -453,7 +453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3012 + "line": 3054 } }, { @@ -468,7 +468,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3196 + "line": 3239 } }, { @@ -477,7 +477,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3673 + "line": 3718 } } ], @@ -495,7 +495,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1183 + "line": 1197 } }, { @@ -509,7 +509,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1184 + "line": 1198 } }, { @@ -523,7 +523,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1185 + "line": 1199 } }, { @@ -537,7 +537,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1186 + "line": 1200 } }, { @@ -551,7 +551,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1187 + "line": 1201 } }, { @@ -565,7 +565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1188 + "line": 1202 } }, { @@ -579,7 +579,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1189 + "line": 1203 } }, { @@ -593,7 +593,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1190 + "line": 1204 } }, { @@ -607,7 +607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1191 + "line": 1205 } }, { @@ -621,7 +621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1192 + "line": 1206 } }, { @@ -635,7 +635,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1193 + "line": 1207 } }, { @@ -649,7 +649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1194 + "line": 1208 } }, { @@ -663,7 +663,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1195 + "line": 1209 } }, { @@ -677,7 +677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1196 + "line": 1210 } }, { @@ -691,7 +691,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1197 + "line": 1211 } }, { @@ -705,7 +705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1198 + "line": 1212 } }, { @@ -719,7 +719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1199 + "line": 1213 } }, { @@ -733,7 +733,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1200 + "line": 1214 } }, { @@ -742,12 +742,12 @@ "value": 131072, "is_count": false, "comments": { - "attached": "// No focusing toward this window with keyboard/gamepad navigation (e.g. skipped by CTRL+TAB)" + "attached": "// No focusing toward this window with keyboard/gamepad navigation (e.g. skipped by Ctrl+Tab)" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1201 + "line": 1215 } }, { @@ -761,7 +761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1202 + "line": 1216 } }, { @@ -775,7 +775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1203 + "line": 1217 } }, { @@ -786,7 +786,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1204 + "line": 1218 } }, { @@ -797,7 +797,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1205 + "line": 1219 } }, { @@ -808,7 +808,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1206 + "line": 1220 } }, { @@ -825,7 +825,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1209 + "line": 1223 } }, { @@ -839,7 +839,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1210 + "line": 1224 } }, { @@ -853,7 +853,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1211 + "line": 1225 } }, { @@ -867,7 +867,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1212 + "line": 1226 } }, { @@ -881,7 +881,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1213 + "line": 1227 } }, { @@ -895,47 +895,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1214 - } - }, - { - "name": "ImGuiWindowFlags_NavFlattened", - "value_expression": "1<<29", - "value": 536870912, - "is_count": false, - "comments": { - "attached": "// Obsoleted in 1.90.9: Use ImGuiChildFlags_NavFlattened in BeginChild() call." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1218 - } - }, - { - "name": "ImGuiWindowFlags_AlwaysUseWindowPadding", - "value_expression": "1<<30", - "value": 1073741824, - "is_count": false, - "comments": { - "attached": "// Obsoleted in 1.90.0: Use ImGuiChildFlags_AlwaysUseWindowPadding in BeginChild() call." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1219 + "line": 1228 } } ], @@ -948,7 +908,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1181 + "line": 1195 } }, { @@ -964,7 +924,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1234 + "line": 1248 } }, { @@ -978,7 +938,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1235 + "line": 1249 } }, { @@ -992,7 +952,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1236 + "line": 1250 } }, { @@ -1006,7 +966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1237 + "line": 1251 } }, { @@ -1020,7 +980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1238 + "line": 1252 } }, { @@ -1034,7 +994,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1239 + "line": 1253 } }, { @@ -1048,7 +1008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1240 + "line": 1254 } }, { @@ -1062,7 +1022,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1241 + "line": 1255 } }, { @@ -1076,7 +1036,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1242 + "line": 1256 } }, { @@ -1090,34 +1050,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1243 - } - }, - { - "name": "ImGuiChildFlags_Border", - "value_expression": "ImGuiChildFlags_Borders", - "value": 1, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.91.1 (August 2024) for consistency." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1247 + "line": 1257 } } ], "comments": { "preceding": [ "// Flags for ImGui::BeginChild()", - "// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'.", + "// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'.)", "// About using AutoResizeX/AutoResizeY flags:", "// - May be combined with SetNextWindowSizeConstraints() to set a min/max size for each axis (see \"Demo->Child->Auto-resize with Constraints\").", "// - Size measurement for a given axis is only performed when the child window is within visible boundaries, or is just appearing.", @@ -1130,7 +1070,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1232 + "line": 1246 } }, { @@ -1149,7 +1089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1255 + "line": 1269 } }, { @@ -1163,7 +1103,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1256 + "line": 1270 } }, { @@ -1177,7 +1117,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1257 + "line": 1271 } }, { @@ -1191,7 +1131,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1258 + "line": 1272 } }, { @@ -1205,7 +1145,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1259 + "line": 1273 } }, { @@ -1219,7 +1159,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1260 + "line": 1274 } }, { @@ -1233,7 +1173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1261 + "line": 1275 } } ], @@ -1246,7 +1186,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1253 + "line": 1267 } }, { @@ -1267,7 +1207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1269 + "line": 1283 } }, { @@ -1281,7 +1221,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1270 + "line": 1284 } }, { @@ -1295,7 +1235,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1271 + "line": 1285 } }, { @@ -1309,7 +1249,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1272 + "line": 1286 } }, { @@ -1323,7 +1263,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1273 + "line": 1287 } }, { @@ -1337,7 +1277,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1274 + "line": 1288 } }, { @@ -1354,7 +1294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1277 + "line": 1291 } }, { @@ -1368,7 +1308,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1278 + "line": 1292 } }, { @@ -1382,7 +1322,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1279 + "line": 1293 } }, { @@ -1396,7 +1336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1280 + "line": 1294 } }, { @@ -1413,7 +1353,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1283 + "line": 1297 } }, { @@ -1427,7 +1367,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1284 + "line": 1298 } }, { @@ -1441,7 +1381,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1285 + "line": 1299 } }, { @@ -1455,7 +1395,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1286 + "line": 1300 } }, { @@ -1469,7 +1409,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1287 + "line": 1301 } }, { @@ -1483,7 +1423,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1288 + "line": 1302 } }, { @@ -1497,7 +1437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1289 + "line": 1303 } }, { @@ -1511,7 +1451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1290 + "line": 1304 } }, { @@ -1528,7 +1468,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1293 + "line": 1307 } }, { @@ -1545,7 +1485,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1296 + "line": 1310 } }, { @@ -1559,7 +1499,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1297 + "line": 1311 } }, { @@ -1573,7 +1513,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1298 + "line": 1312 } }, { @@ -1587,7 +1527,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1299 + "line": 1313 } }, { @@ -1601,7 +1541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1300 + "line": 1314 } }, { @@ -1615,7 +1555,30 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1301 + "line": 1315 + } + }, + { + "name": "ImGuiInputTextFlags_WordWrap", + "value_expression": "1<<24", + "value": 16777216, + "is_count": false, + "comments": { + "preceding": [ + "// Multi-line Word-Wrapping [BETA]", + "// - Not well tested yet. Please report any incorrect cursor movement, selection behavior etc. bug to https://github.com/ocornut/imgui/issues/3237.", + "// - Wrapping style is not ideal. Wrapping of long words/sections (e.g. words larger than total available width) may be particularly unpleasing.", + "// - Wrapping width needs to always account for the possibility of a vertical scrollbar.", + "// - It is much slower than regular text fields.", + "// Ballpark estimate of cost on my 2019 desktop PC: for a 100 KB text buffer: +~0.3 ms (Optimized) / +~1.0 ms (Debug build).", + "// The CPU cost is very roughly proportional to text length, so a 10 KB buffer should cost about ten times less." + ], + "attached": "// InputTextMultiline(): word-wrap lines that are too long." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1324 } } ], @@ -1628,7 +1591,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1266 + "line": 1280 } }, { @@ -1644,7 +1607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1310 + "line": 1333 } }, { @@ -1658,7 +1621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1311 + "line": 1334 } }, { @@ -1672,7 +1635,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1312 + "line": 1335 } }, { @@ -1686,7 +1649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1313 + "line": 1336 } }, { @@ -1700,7 +1663,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1314 + "line": 1337 } }, { @@ -1714,7 +1677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1315 + "line": 1338 } }, { @@ -1728,7 +1691,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1316 + "line": 1339 } }, { @@ -1742,7 +1705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1317 + "line": 1340 } }, { @@ -1756,7 +1719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1318 + "line": 1341 } }, { @@ -1770,7 +1733,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1319 + "line": 1342 } }, { @@ -1784,7 +1747,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1320 + "line": 1343 } }, { @@ -1798,7 +1761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1321 + "line": 1344 } }, { @@ -1812,7 +1775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1322 + "line": 1345 } }, { @@ -1826,7 +1789,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1323 + "line": 1346 } }, { @@ -1840,7 +1803,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1324 + "line": 1347 } }, { @@ -1854,7 +1817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1325 + "line": 1348 } }, { @@ -1868,7 +1831,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1326 + "line": 1349 } }, { @@ -1880,12 +1843,12 @@ "preceding": [ "//ImGuiTreeNodeFlags_NoScrollOnOpen = 1 << 16, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible" ], - "attached": "// Nav: left arrow moves back to parent. This is processed in TreePop() when there's an unfullfilled Left nav request remaining." + "attached": "// Nav: left arrow moves back to parent. This is processed in TreePop() when there's an unfulfilled Left nav request remaining." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1328 + "line": 1351 } }, { @@ -1896,7 +1859,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1329 + "line": 1352 } }, { @@ -1914,7 +1877,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1333 + "line": 1356 } }, { @@ -1928,7 +1891,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1334 + "line": 1357 } }, { @@ -1942,7 +1905,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1335 + "line": 1358 } }, { @@ -1962,7 +1925,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1338 + "line": 1361 } }, { @@ -1982,27 +1945,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1339 - } - }, - { - "name": "ImGuiTreeNodeFlags_AllowItemOverlap", - "value_expression": "ImGuiTreeNodeFlags_AllowOverlap", - "value": 4, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.89.7" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1340 + "line": 1362 } } ], @@ -2014,7 +1957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1308 + "line": 1331 } }, { @@ -2030,7 +1973,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1354 + "line": 1377 } }, { @@ -2044,7 +1987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1355 + "line": 1378 } }, { @@ -2058,7 +2001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1356 + "line": 1379 } }, { @@ -2072,7 +2015,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1357 + "line": 1380 } }, { @@ -2083,7 +2026,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1358 + "line": 1381 } }, { @@ -2094,7 +2037,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1359 + "line": 1382 } }, { @@ -2108,7 +2051,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1360 + "line": 1383 } }, { @@ -2125,7 +2068,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1362 + "line": 1385 } }, { @@ -2139,7 +2082,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1363 + "line": 1386 } }, { @@ -2153,7 +2096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1364 + "line": 1387 } }, { @@ -2167,7 +2110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1365 + "line": 1388 } }, { @@ -2178,7 +2121,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1366 + "line": 1389 } } ], @@ -2197,7 +2140,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1352 + "line": 1375 } }, { @@ -2213,7 +2156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1372 + "line": 1395 } }, { @@ -2227,7 +2170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1373 + "line": 1396 } }, { @@ -2241,7 +2184,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1374 + "line": 1397 } }, { @@ -2255,7 +2198,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1375 + "line": 1398 } }, { @@ -2269,7 +2212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1376 + "line": 1399 } }, { @@ -2283,7 +2226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1377 + "line": 1400 } }, { @@ -2297,7 +2240,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1378 + "line": 1401 + } + }, + { + "name": "ImGuiSelectableFlags_SelectOnNav", + "value_expression": "1<<6", + "value": 64, + "is_count": false, + "comments": { + "attached": "// Auto-select when moved into, unless Ctrl is held. Automatic when in a BeginMultiSelect() block." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1402 } }, { @@ -2317,27 +2274,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1381 - } - }, - { - "name": "ImGuiSelectableFlags_AllowItemOverlap", - "value_expression": "ImGuiSelectableFlags_AllowOverlap", - "value": 16, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.89.7" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1382 + "line": 1405 } } ], @@ -2349,7 +2286,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1370 + "line": 1393 } }, { @@ -2365,7 +2302,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1389 + "line": 1413 } }, { @@ -2379,7 +2316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1390 + "line": 1414 } }, { @@ -2393,7 +2330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1391 + "line": 1415 } }, { @@ -2407,7 +2344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1392 + "line": 1416 } }, { @@ -2421,7 +2358,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1393 + "line": 1417 } }, { @@ -2435,7 +2372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1394 + "line": 1418 } }, { @@ -2449,7 +2386,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1395 + "line": 1419 } }, { @@ -2463,7 +2400,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1396 + "line": 1420 } }, { @@ -2477,7 +2414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1397 + "line": 1421 } }, { @@ -2488,7 +2425,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1398 + "line": 1422 } } ], @@ -2500,7 +2437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1387 + "line": 1411 } }, { @@ -2516,7 +2453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1404 + "line": 1428 } }, { @@ -2530,7 +2467,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1405 + "line": 1429 } }, { @@ -2544,7 +2481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1406 + "line": 1430 } }, { @@ -2558,7 +2495,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1407 + "line": 1431 } }, { @@ -2572,7 +2509,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1408 + "line": 1432 } }, { @@ -2586,7 +2523,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1409 + "line": 1433 } }, { @@ -2600,7 +2537,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1410 + "line": 1434 } }, { @@ -2614,7 +2551,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1411 + "line": 1435 } }, { @@ -2631,7 +2568,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1414 + "line": 1438 } }, { @@ -2645,7 +2582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1415 + "line": 1439 } }, { @@ -2659,7 +2596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1416 + "line": 1440 } }, { @@ -2670,7 +2607,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1417 + "line": 1441 } }, { @@ -2681,7 +2618,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1418 + "line": 1442 } }, { @@ -2701,7 +2638,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1421 + "line": 1445 } } ], @@ -2713,7 +2650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1402 + "line": 1426 } }, { @@ -2729,7 +2666,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1428 + "line": 1452 } }, { @@ -2743,7 +2680,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1429 + "line": 1453 } }, { @@ -2757,7 +2694,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1430 + "line": 1454 } }, { @@ -2771,7 +2708,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1431 + "line": 1455 } }, { @@ -2785,7 +2722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1432 + "line": 1456 } }, { @@ -2799,7 +2736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1433 + "line": 1457 } }, { @@ -2813,7 +2750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1434 + "line": 1458 } }, { @@ -2827,7 +2764,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1435 + "line": 1459 } }, { @@ -2841,7 +2778,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1436 + "line": 1460 } }, { @@ -2855,7 +2792,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1437 + "line": 1461 } } ], @@ -2867,7 +2804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1426 + "line": 1450 } }, { @@ -2883,7 +2820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1443 + "line": 1467 } }, { @@ -2897,7 +2834,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1444 + "line": 1468 } }, { @@ -2911,7 +2848,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1445 + "line": 1469 } }, { @@ -2925,7 +2862,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1446 + "line": 1470 } }, { @@ -2939,7 +2876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1447 + "line": 1471 } }, { @@ -2953,7 +2890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1448 + "line": 1472 } }, { @@ -2964,7 +2901,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1449 + "line": 1473 } } ], @@ -2976,7 +2913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1441 + "line": 1465 } }, { @@ -2995,7 +2932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1457 + "line": 1481 } }, { @@ -3009,7 +2946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1458 + "line": 1482 } }, { @@ -3023,7 +2960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1459 + "line": 1483 } }, { @@ -3037,7 +2974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1460 + "line": 1484 } }, { @@ -3051,7 +2988,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1461 + "line": 1485 } }, { @@ -3065,7 +3002,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1462 + "line": 1486 } }, { @@ -3079,7 +3016,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1463 + "line": 1487 } }, { @@ -3096,7 +3033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1465 + "line": 1489 } }, { @@ -3110,7 +3047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1466 + "line": 1490 } }, { @@ -3124,7 +3061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1467 + "line": 1491 } }, { @@ -3138,7 +3075,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1468 + "line": 1492 } }, { @@ -3152,7 +3089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1469 + "line": 1493 } }, { @@ -3163,7 +3100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1470 + "line": 1494 } }, { @@ -3174,7 +3111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1471 + "line": 1495 } }, { @@ -3185,7 +3122,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1472 + "line": 1496 } }, { @@ -3198,7 +3135,7 @@ "// Tooltips mode", "// - typically used in IsItemHovered() + SetTooltip() sequence.", "// - this is a shortcut to pull flags from 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' where you can reconfigure desired behavior.", - "// e.g. 'TooltipHoveredFlagsForMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'.", + "// e.g. 'HoverFlagsForTooltipMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_AllowWhenDisabled'.", "// - for frequently actioned or hovered items providing a tooltip, you want may to use ImGuiHoveredFlags_ForTooltip (stationary + delay) so the tooltip doesn't show too often.", "// - for items which main purpose is to be hovered, or items with low affordance, or in less consistent apps, prefer no delay or shorter delay." ], @@ -3207,7 +3144,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1480 + "line": 1504 } }, { @@ -3226,7 +3163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1485 + "line": 1509 } }, { @@ -3240,7 +3177,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1486 + "line": 1510 } }, { @@ -3254,7 +3191,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1487 + "line": 1511 } }, { @@ -3268,7 +3205,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1488 + "line": 1512 } }, { @@ -3282,7 +3219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1489 + "line": 1513 } } ], @@ -3296,7 +3233,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1455 + "line": 1479 } }, { @@ -3312,7 +3249,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1497 + "line": 1521 } }, { @@ -3326,7 +3263,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1498 + "line": 1522 } }, { @@ -3343,7 +3280,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1500 + "line": 1524 } }, { @@ -3357,7 +3294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1501 + "line": 1525 } }, { @@ -3371,7 +3308,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1502 + "line": 1526 } }, { @@ -3385,7 +3322,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1503 + "line": 1527 } }, { @@ -3399,7 +3336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1504 + "line": 1528 } }, { @@ -3413,7 +3350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1505 + "line": 1529 } }, { @@ -3433,7 +3370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1508 + "line": 1532 } }, { @@ -3453,7 +3390,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1509 + "line": 1533 } } ], @@ -3467,7 +3404,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1495 + "line": 1519 } }, { @@ -3483,7 +3420,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1516 + "line": 1540 } }, { @@ -3500,7 +3437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1518 + "line": 1542 } }, { @@ -3514,7 +3451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1519 + "line": 1543 } }, { @@ -3528,7 +3465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1520 + "line": 1544 } }, { @@ -3542,7 +3479,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1521 + "line": 1545 } }, { @@ -3556,7 +3493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1522 + "line": 1546 } }, { @@ -3570,7 +3507,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1523 + "line": 1547 } }, { @@ -3584,7 +3521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1524 + "line": 1548 } }, { @@ -3598,7 +3535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1525 + "line": 1549 } }, { @@ -3615,7 +3552,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1527 + "line": 1551 } }, { @@ -3629,7 +3566,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1528 + "line": 1552 } }, { @@ -3643,7 +3580,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1529 + "line": 1553 + } + }, + { + "name": "ImGuiDragDropFlags_AcceptDrawAsHovered", + "value_expression": "1<<13", + "value": 8192, + "is_count": false, + "comments": { + "attached": "// Accepting item will render as if hovered. Useful for e.g. a Button() used as a drop target." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1554 } }, { @@ -3657,7 +3608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1530 + "line": 1555 } }, { @@ -3677,7 +3628,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1533 + "line": 1558 } } ], @@ -3689,7 +3640,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1514 + "line": 1538 } }, { @@ -3707,7 +3658,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1544 + "line": 1569 } }, { @@ -3720,7 +3671,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1545 + "line": 1570 } }, { @@ -3733,7 +3684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1546 + "line": 1571 } }, { @@ -3746,7 +3697,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1547 + "line": 1572 } }, { @@ -3759,7 +3710,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1548 + "line": 1573 } }, { @@ -3772,7 +3723,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1549 + "line": 1574 } }, { @@ -3785,7 +3736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1550 + "line": 1575 } }, { @@ -3798,7 +3749,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1551 + "line": 1576 } }, { @@ -3811,7 +3762,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1552 + "line": 1577 } }, { @@ -3824,7 +3775,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1553 + "line": 1578 } }, { @@ -3837,7 +3788,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1554 + "line": 1579 } }, { @@ -3850,7 +3801,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1555 + "line": 1580 } }, { @@ -3860,7 +3811,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1556 + "line": 1581 } } ], @@ -3872,7 +3823,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1542 + "line": 1567 } }, { @@ -3895,7 +3846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1562 + "line": 1587 } }, { @@ -3906,7 +3857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1563 + "line": 1588 } }, { @@ -3917,7 +3868,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1564 + "line": 1589 } }, { @@ -3928,7 +3879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1565 + "line": 1590 } }, { @@ -3939,7 +3890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1566 + "line": 1591 } }, { @@ -3949,7 +3900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1567 + "line": 1592 } } ], @@ -3962,7 +3913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1560 + "line": 1585 } }, { @@ -3985,7 +3936,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1573 + "line": 1598 } }, { @@ -3999,7 +3950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1574 + "line": 1599 } }, { @@ -4013,7 +3964,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1575 + "line": 1600 } } ], @@ -4026,7 +3977,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1571 + "line": 1596 } }, { @@ -4054,7 +4005,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1587 + "line": 1612 } }, { @@ -4068,7 +4019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1588 + "line": 1613 } }, { @@ -4082,7 +4033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1590 + "line": 1615 } }, { @@ -4092,7 +4043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1591 + "line": 1616 } }, { @@ -4102,7 +4053,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1592 + "line": 1617 } }, { @@ -4112,7 +4063,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1593 + "line": 1618 } }, { @@ -4122,7 +4073,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1594 + "line": 1619 } }, { @@ -4132,7 +4083,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1595 + "line": 1620 } }, { @@ -4142,7 +4093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1596 + "line": 1621 } }, { @@ -4152,7 +4103,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1597 + "line": 1622 } }, { @@ -4162,7 +4113,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1598 + "line": 1623 } }, { @@ -4172,7 +4123,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1599 + "line": 1624 } }, { @@ -4182,7 +4133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1600 + "line": 1625 } }, { @@ -4192,7 +4143,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1601 + "line": 1626 } }, { @@ -4202,7 +4153,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1602 + "line": 1627 } }, { @@ -4212,7 +4163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1603 + "line": 1628 } }, { @@ -4222,7 +4173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1604 + "line": 1629 } }, { @@ -4232,7 +4183,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4242,7 +4193,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4252,7 +4203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4265,7 +4216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1605 + "line": 1630 } }, { @@ -4275,7 +4226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4285,7 +4236,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4295,7 +4246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4305,7 +4256,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1606 + "line": 1631 } }, { @@ -4315,7 +4266,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1607 + "line": 1632 } }, { @@ -4325,7 +4276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4335,7 +4286,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4345,7 +4296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4355,7 +4306,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4365,7 +4316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4375,7 +4326,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4385,7 +4336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4395,7 +4346,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4405,7 +4356,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4415,7 +4366,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1608 + "line": 1633 } }, { @@ -4425,7 +4376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4435,7 +4386,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4445,7 +4396,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4455,7 +4406,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4465,7 +4416,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4475,7 +4426,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4485,7 +4436,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4495,7 +4446,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4505,7 +4456,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4515,7 +4466,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1609 + "line": 1634 } }, { @@ -4525,7 +4476,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4535,7 +4486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4545,7 +4496,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4555,7 +4506,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4565,7 +4516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4575,7 +4526,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4585,7 +4536,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4595,7 +4546,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4605,7 +4556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4615,7 +4566,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1610 + "line": 1635 } }, { @@ -4625,7 +4576,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4635,7 +4586,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4645,7 +4596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4655,7 +4606,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4665,7 +4616,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4675,7 +4626,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1611 + "line": 1636 } }, { @@ -4685,7 +4636,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4695,7 +4646,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4705,7 +4656,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4715,7 +4666,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4725,7 +4676,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4735,7 +4686,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1612 + "line": 1637 } }, { @@ -4745,7 +4696,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4755,7 +4706,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4765,7 +4716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4775,7 +4726,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4785,7 +4736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4795,7 +4746,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1613 + "line": 1638 } }, { @@ -4805,7 +4756,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4815,7 +4766,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4825,7 +4776,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4835,7 +4786,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4845,7 +4796,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4855,7 +4806,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1614 + "line": 1639 } }, { @@ -4865,7 +4816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4875,7 +4826,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4885,7 +4836,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4895,7 +4846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4905,7 +4856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4915,7 +4866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1615 + "line": 1640 } }, { @@ -4928,7 +4879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1616 + "line": 1641 } }, { @@ -4941,7 +4892,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1617 + "line": 1642 } }, { @@ -4954,7 +4905,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1618 + "line": 1643 } }, { @@ -4967,7 +4918,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1619 + "line": 1644 } }, { @@ -4980,7 +4931,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1620 + "line": 1645 } }, { @@ -4993,7 +4944,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1621 + "line": 1646 } }, { @@ -5006,7 +4957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1622 + "line": 1647 } }, { @@ -5019,7 +4970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1623 + "line": 1648 } }, { @@ -5032,7 +4983,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1624 + "line": 1649 } }, { @@ -5045,7 +4996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1625 + "line": 1650 } }, { @@ -5058,7 +5009,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1626 + "line": 1651 } }, { @@ -5068,7 +5019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1627 + "line": 1652 } }, { @@ -5078,7 +5029,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1628 + "line": 1653 } }, { @@ -5088,7 +5039,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1629 + "line": 1654 } }, { @@ -5098,7 +5049,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1630 + "line": 1655 } }, { @@ -5108,7 +5059,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1631 + "line": 1656 } }, { @@ -5118,7 +5069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5128,7 +5079,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5138,7 +5089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5148,7 +5099,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5158,7 +5109,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1632 + "line": 1657 } }, { @@ -5168,7 +5119,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5178,7 +5129,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5188,7 +5139,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5198,7 +5149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5208,7 +5159,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1633 + "line": 1658 } }, { @@ -5218,7 +5169,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1634 + "line": 1659 } }, { @@ -5228,7 +5179,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1635 + "line": 1660 } }, { @@ -5238,7 +5189,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1636 + "line": 1661 } }, { @@ -5248,7 +5199,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1637 + "line": 1662 } }, { @@ -5258,7 +5209,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1638 + "line": 1663 } }, { @@ -5268,7 +5219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1639 + "line": 1664 } }, { @@ -5278,7 +5229,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1640 + "line": 1665 } }, { @@ -5291,7 +5242,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1641 + "line": 1666 } }, { @@ -5301,7 +5252,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1642 + "line": 1667 } }, { @@ -5314,7 +5265,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1643 + "line": 1668 } }, { @@ -5333,7 +5284,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1649 + "line": 1674 } }, { @@ -5346,7 +5297,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1650 + "line": 1675 } }, { @@ -5359,7 +5310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1651 + "line": 1676 } }, { @@ -5372,7 +5323,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1652 + "line": 1677 } }, { @@ -5385,7 +5336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1653 + "line": 1678 } }, { @@ -5398,7 +5349,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1654 + "line": 1679 } }, { @@ -5411,7 +5362,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1655 + "line": 1680 } }, { @@ -5424,7 +5375,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1656 + "line": 1681 } }, { @@ -5437,7 +5388,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1657 + "line": 1682 } }, { @@ -5450,7 +5401,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1658 + "line": 1683 } }, { @@ -5463,7 +5414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1659 + "line": 1684 } }, { @@ -5476,7 +5427,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1660 + "line": 1685 } }, { @@ -5489,7 +5440,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1661 + "line": 1686 } }, { @@ -5502,7 +5453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1662 + "line": 1687 } }, { @@ -5515,7 +5466,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1663 + "line": 1688 } }, { @@ -5528,7 +5479,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1664 + "line": 1689 } }, { @@ -5541,7 +5492,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1665 + "line": 1690 } }, { @@ -5554,7 +5505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1666 + "line": 1691 } }, { @@ -5567,7 +5518,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1667 + "line": 1692 } }, { @@ -5580,7 +5531,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1668 + "line": 1693 } }, { @@ -5593,7 +5544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1669 + "line": 1694 } }, { @@ -5606,7 +5557,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1670 + "line": 1695 } }, { @@ -5619,7 +5570,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1671 + "line": 1696 } }, { @@ -5632,7 +5583,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1672 + "line": 1697 } }, { @@ -5648,7 +5599,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5658,7 +5609,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5668,7 +5619,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5678,7 +5629,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5688,7 +5639,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5698,7 +5649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5708,7 +5659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1676 + "line": 1701 } }, { @@ -5723,7 +5674,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5733,7 +5684,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5743,7 +5694,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5753,7 +5704,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1679 + "line": 1704 } }, { @@ -5768,7 +5719,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1682 + "line": 1707 } }, { @@ -5779,7 +5730,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1683 + "line": 1708 } }, { @@ -5804,7 +5755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1695 + "line": 1720 } }, { @@ -5818,7 +5769,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1696 + "line": 1721 } }, { @@ -5832,7 +5783,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1697 + "line": 1722 } }, { @@ -5846,7 +5797,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1698 + "line": 1723 } }, { @@ -5860,7 +5811,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1699 + "line": 1724 } }, { @@ -5874,7 +5825,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1700 + "line": 1725 } }, { @@ -5883,7 +5834,7 @@ "value": 667, "is_count": true, "comments": { - "attached": "// Obsoleted in 1.91.5 because it was extremely misleading (since named keys don't start at 0 anymore)" + "attached": "// Obsoleted in 1.91.5 because it was misleading (since named keys don't start at 0 anymore)" }, "conditionals": [ { @@ -5894,7 +5845,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1703 + "line": 1728 } }, { @@ -5914,78 +5865,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1704 - } - }, - { - "name": "ImGuiKey_ModCtrl", - "value_expression": "ImGuiMod_Ctrl", - "value": 4096, - "is_count": false, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 - } - }, - { - "name": "ImGuiKey_ModShift", - "value_expression": "ImGuiMod_Shift", - "value": 8192, - "is_count": false, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 - } - }, - { - "name": "ImGuiKey_ModAlt", - "value_expression": "ImGuiMod_Alt", - "value": 16384, - "is_count": false, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 - } - }, - { - "name": "ImGuiKey_ModSuper", - "value_expression": "ImGuiMod_Super", - "value": 32768, - "is_count": false, - "comments": { - "attached": "// Renamed in 1.89" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 1705 + "line": 1729 } } ], @@ -6003,7 +5883,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1584 + "line": 1609 } }, { @@ -6019,7 +5899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1715 + "line": 1740 } }, { @@ -6033,7 +5913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1716 + "line": 1741 } }, { @@ -6052,7 +5932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1721 + "line": 1746 } }, { @@ -6066,7 +5946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1722 + "line": 1747 } }, { @@ -6080,7 +5960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1723 + "line": 1748 } }, { @@ -6094,7 +5974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1724 + "line": 1749 } }, { @@ -6111,7 +5991,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1726 + "line": 1751 } }, { @@ -6120,12 +6000,12 @@ "value": 32768, "is_count": false, "comments": { - "attached": "// Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. CTRL+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active." + "attached": "// Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. Ctrl+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1727 + "line": 1752 } }, { @@ -6139,7 +6019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1728 + "line": 1753 } }, { @@ -6153,7 +6033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1729 + "line": 1754 } }, { @@ -6170,7 +6050,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1732 + "line": 1757 } } ], @@ -6184,7 +6064,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1713 + "line": 1738 } }, { @@ -6200,7 +6080,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1738 + "line": 1763 } }, { @@ -6214,7 +6094,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1739 + "line": 1764 } }, { @@ -6228,7 +6108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1740 + "line": 1765 } }, { @@ -6242,7 +6122,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1741 + "line": 1766 } }, { @@ -6256,7 +6136,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1742 + "line": 1767 } }, { @@ -6270,7 +6150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1743 + "line": 1768 } }, { @@ -6287,7 +6167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1746 + "line": 1771 } }, { @@ -6305,7 +6185,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1750 + "line": 1775 } }, { @@ -6322,7 +6202,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1753 + "line": 1778 } }, { @@ -6336,7 +6216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1754 + "line": 1779 } }, { @@ -6356,7 +6236,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1757 + "line": 1782 } }, { @@ -6376,7 +6256,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1758 + "line": 1783 } }, { @@ -6396,7 +6276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1759 + "line": 1784 } }, { @@ -6416,7 +6296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1760 + "line": 1785 } } ], @@ -6428,7 +6308,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1736 + "line": 1761 } }, { @@ -6444,7 +6324,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1767 + "line": 1792 } }, { @@ -6458,7 +6338,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1768 + "line": 1793 } }, { @@ -6472,7 +6352,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1769 + "line": 1794 } }, { @@ -6486,7 +6366,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1770 + "line": 1795 } }, { @@ -6500,7 +6380,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1771 + "line": 1796 } }, { @@ -6514,30 +6394,44 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1772 + "line": 1797 } }, { - "name": "ImGuiBackendFlags_PlatformHasViewports", + "name": "ImGuiBackendFlags_RendererHasViewports", "value_expression": "1<<10", "value": 1024, "is_count": false, "comments": { "preceding": [ - "// [BETA] Viewports" + "// [BETA] Multi-Viewports" ], + "attached": "// Backend Renderer supports multiple viewports." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1800 + } + }, + { + "name": "ImGuiBackendFlags_PlatformHasViewports", + "value_expression": "1<<11", + "value": 2048, + "is_count": false, + "comments": { "attached": "// Backend Platform supports multiple viewports." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1775 + "line": 1801 } }, { "name": "ImGuiBackendFlags_HasMouseHoveredViewport", - "value_expression": "1<<11", - "value": 2048, + "value_expression": "1<<12", + "value": 4096, "is_count": false, "comments": { "attached": "// Backend Platform supports calling io.AddMouseViewportEvent() with the viewport under the mouse. IF POSSIBLE, ignore viewports with the ImGuiViewportFlags_NoInputs flag (Win32 backend, GLFW 3.30+ backend can do this, SDL backend cannot). If this cannot be done, Dear ImGui needs to use a flawed heuristic to find the viewport under." @@ -6545,21 +6439,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1776 + "line": 1802 } }, { - "name": "ImGuiBackendFlags_RendererHasViewports", - "value_expression": "1<<12", - "value": 4096, + "name": "ImGuiBackendFlags_HasParentViewport", + "value_expression": "1<<13", + "value": 8192, "is_count": false, "comments": { - "attached": "// Backend Renderer supports multiple viewports." + "attached": "// Backend Platform supports honoring viewport->ParentViewport/ParentViewportId value, by applying the corresponding parent/child relation at the Platform level." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1777 + "line": 1803 } } ], @@ -6571,7 +6465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1765 + "line": 1790 } }, { @@ -6586,7 +6480,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1783 + "line": 1809 } }, { @@ -6596,7 +6490,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1784 + "line": 1810 } }, { @@ -6609,7 +6503,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1785 + "line": 1811 } }, { @@ -6622,7 +6516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1786 + "line": 1812 } }, { @@ -6635,7 +6529,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1787 + "line": 1813 } }, { @@ -6645,7 +6539,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1788 + "line": 1814 } }, { @@ -6655,7 +6549,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1789 + "line": 1815 } }, { @@ -6668,7 +6562,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1790 + "line": 1816 } }, { @@ -6678,7 +6572,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1791 + "line": 1817 } }, { @@ -6688,7 +6582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1792 + "line": 1818 } }, { @@ -6701,7 +6595,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1793 + "line": 1819 } }, { @@ -6714,7 +6608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1794 + "line": 1820 } }, { @@ -6727,7 +6621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1795 + "line": 1821 } }, { @@ -6737,7 +6631,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1796 + "line": 1822 } }, { @@ -6747,7 +6641,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1797 + "line": 1823 } }, { @@ -6757,7 +6651,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1798 + "line": 1824 } }, { @@ -6767,7 +6661,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1799 + "line": 1825 } }, { @@ -6777,7 +6671,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1800 + "line": 1826 } }, { @@ -6790,7 +6684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1801 + "line": 1827 } }, { @@ -6800,7 +6694,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1802 + "line": 1828 } }, { @@ -6810,7 +6704,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1803 + "line": 1829 } }, { @@ -6820,7 +6714,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1804 + "line": 1830 } }, { @@ -6830,7 +6724,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1805 + "line": 1831 } }, { @@ -6840,7 +6734,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1806 + "line": 1832 } }, { @@ -6853,7 +6747,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1807 + "line": 1833 } }, { @@ -6863,7 +6757,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1808 + "line": 1834 } }, { @@ -6873,7 +6767,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1809 + "line": 1835 } }, { @@ -6883,7 +6777,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1810 + "line": 1836 } }, { @@ -6893,7 +6787,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1811 + "line": 1837 } }, { @@ -6903,7 +6797,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1812 + "line": 1838 } }, { @@ -6916,7 +6810,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1813 + "line": 1839 } }, { @@ -6926,7 +6820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1814 + "line": 1840 } }, { @@ -6936,7 +6830,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1815 + "line": 1841 } }, { @@ -6949,7 +6843,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1816 + "line": 1842 } }, { @@ -6962,7 +6856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1817 + "line": 1843 } }, { @@ -6975,7 +6869,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1818 + "line": 1844 } }, { @@ -6988,7 +6882,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1819 + "line": 1845 } }, { @@ -7001,7 +6895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1820 + "line": 1846 } }, { @@ -7014,7 +6908,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1821 + "line": 1847 } }, { @@ -7027,7 +6921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1822 + "line": 1848 } }, { @@ -7040,7 +6934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1823 + "line": 1849 } }, { @@ -7053,7 +6947,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1824 + "line": 1850 } }, { @@ -7066,7 +6960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1825 + "line": 1851 } }, { @@ -7076,7 +6970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1826 + "line": 1852 } }, { @@ -7086,7 +6980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1827 + "line": 1853 } }, { @@ -7096,7 +6990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1828 + "line": 1854 } }, { @@ -7106,7 +7000,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1829 + "line": 1855 } }, { @@ -7119,7 +7013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1830 + "line": 1856 } }, { @@ -7132,7 +7026,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1831 + "line": 1857 } }, { @@ -7145,7 +7039,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1832 + "line": 1858 } }, { @@ -7158,7 +7052,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1833 + "line": 1859 } }, { @@ -7171,7 +7065,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1834 + "line": 1860 } }, { @@ -7184,7 +7078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1835 + "line": 1861 } }, { @@ -7197,7 +7091,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1836 + "line": 1862 } }, { @@ -7210,7 +7104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1837 + "line": 1863 } }, { @@ -7218,17 +7112,43 @@ "value": 55, "is_count": false, "comments": { - "attached": "// Rectangle highlighting a drop target" + "attached": "// Rectangle border highlighting a drop target" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1838 + "line": 1864 + } + }, + { + "name": "ImGuiCol_DragDropTargetBg", + "value": 56, + "is_count": false, + "comments": { + "attached": "// Rectangle background highlighting a drop target" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1865 + } + }, + { + "name": "ImGuiCol_UnsavedMarker", + "value": 57, + "is_count": false, + "comments": { + "attached": "// Unsaved Document marker (in window title and tabs)" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1866 } }, { "name": "ImGuiCol_NavCursor", - "value": 56, + "value": 58, "is_count": false, "comments": { "attached": "// Color of keyboard/gamepad navigation cursor/rectangle, when visible" @@ -7236,38 +7156,38 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1839 + "line": 1867 } }, { "name": "ImGuiCol_NavWindowingHighlight", - "value": 57, + "value": 59, "is_count": false, "comments": { - "attached": "// Highlight window when using CTRL+TAB" + "attached": "// Highlight window when using Ctrl+Tab" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1840 + "line": 1868 } }, { "name": "ImGuiCol_NavWindowingDimBg", - "value": 58, + "value": 60, "is_count": false, "comments": { - "attached": "// Darken/colorize entire screen behind the CTRL+TAB window list, when active" + "attached": "// Darken/colorize entire screen behind the Ctrl+Tab window list, when active" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1841 + "line": 1869 } }, { "name": "ImGuiCol_ModalWindowDimBg", - "value": 59, + "value": 61, "is_count": false, "comments": { "attached": "// Darken/colorize entire screen behind a modal window, when one is active" @@ -7275,17 +7195,17 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1842 + "line": 1870 } }, { "name": "ImGuiCol_COUNT", - "value": 60, + "value": 62, "is_count": true, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1843 + "line": 1871 } }, { @@ -7305,7 +7225,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1846 + "line": 1874 } }, { @@ -7325,7 +7245,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1847 + "line": 1875 } }, { @@ -7345,13 +7265,13 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1848 + "line": 1876 } }, { "name": "ImGuiCol_NavHighlight", "value_expression": "ImGuiCol_NavCursor", - "value": 56, + "value": 58, "is_count": false, "comments": { "attached": "// [renamed in 1.91.4]" @@ -7365,7 +7285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1849 + "line": 1877 } } ], @@ -7377,7 +7297,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1781 + "line": 1807 } }, { @@ -7398,7 +7318,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1864 + "line": 1892 } }, { @@ -7411,7 +7331,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1865 + "line": 1893 } }, { @@ -7424,7 +7344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1866 + "line": 1894 } }, { @@ -7437,7 +7357,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1867 + "line": 1895 } }, { @@ -7450,7 +7370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1868 + "line": 1896 } }, { @@ -7463,7 +7383,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1869 + "line": 1897 } }, { @@ -7476,7 +7396,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1870 + "line": 1898 } }, { @@ -7489,7 +7409,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1871 + "line": 1899 } }, { @@ -7502,7 +7422,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1872 + "line": 1900 } }, { @@ -7515,7 +7435,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1873 + "line": 1901 } }, { @@ -7528,7 +7448,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1874 + "line": 1902 } }, { @@ -7541,7 +7461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1875 + "line": 1903 } }, { @@ -7554,7 +7474,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1876 + "line": 1904 } }, { @@ -7567,7 +7487,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1877 + "line": 1905 } }, { @@ -7580,7 +7500,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1878 + "line": 1906 } }, { @@ -7593,7 +7513,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1879 + "line": 1907 } }, { @@ -7606,7 +7526,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1880 + "line": 1908 } }, { @@ -7619,7 +7539,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1881 + "line": 1909 } }, { @@ -7632,7 +7552,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1882 + "line": 1910 } }, { @@ -7645,12 +7565,25 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1883 + "line": 1911 + } + }, + { + "name": "ImGuiStyleVar_ScrollbarPadding", + "value": 20, + "is_count": false, + "comments": { + "attached": "// float ScrollbarPadding" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 1912 } }, { "name": "ImGuiStyleVar_GrabMinSize", - "value": 20, + "value": 21, "is_count": false, "comments": { "attached": "// float GrabMinSize" @@ -7658,12 +7591,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1884 + "line": 1913 } }, { "name": "ImGuiStyleVar_GrabRounding", - "value": 21, + "value": 22, "is_count": false, "comments": { "attached": "// float GrabRounding" @@ -7671,12 +7604,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1885 + "line": 1914 } }, { "name": "ImGuiStyleVar_ImageBorderSize", - "value": 22, + "value": 23, "is_count": false, "comments": { "attached": "// float ImageBorderSize" @@ -7684,12 +7617,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1886 + "line": 1915 } }, { "name": "ImGuiStyleVar_TabRounding", - "value": 23, + "value": 24, "is_count": false, "comments": { "attached": "// float TabRounding" @@ -7697,12 +7630,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1887 + "line": 1916 } }, { "name": "ImGuiStyleVar_TabBorderSize", - "value": 24, + "value": 25, "is_count": false, "comments": { "attached": "// float TabBorderSize" @@ -7710,12 +7643,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1888 + "line": 1917 } }, { "name": "ImGuiStyleVar_TabMinWidthBase", - "value": 25, + "value": 26, "is_count": false, "comments": { "attached": "// float TabMinWidthBase" @@ -7723,12 +7656,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1889 + "line": 1918 } }, { "name": "ImGuiStyleVar_TabMinWidthShrink", - "value": 26, + "value": 27, "is_count": false, "comments": { "attached": "// float TabMinWidthShrink" @@ -7736,12 +7669,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1890 + "line": 1919 } }, { "name": "ImGuiStyleVar_TabBarBorderSize", - "value": 27, + "value": 28, "is_count": false, "comments": { "attached": "// float TabBarBorderSize" @@ -7749,12 +7682,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1891 + "line": 1920 } }, { "name": "ImGuiStyleVar_TabBarOverlineSize", - "value": 28, + "value": 29, "is_count": false, "comments": { "attached": "// float TabBarOverlineSize" @@ -7762,12 +7695,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1892 + "line": 1921 } }, { "name": "ImGuiStyleVar_TableAngledHeadersAngle", - "value": 29, + "value": 30, "is_count": false, "comments": { "attached": "// float TableAngledHeadersAngle" @@ -7775,12 +7708,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1893 + "line": 1922 } }, { "name": "ImGuiStyleVar_TableAngledHeadersTextAlign", - "value": 30, + "value": 31, "is_count": false, "comments": { "attached": "// ImVec2 TableAngledHeadersTextAlign" @@ -7788,12 +7721,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1894 + "line": 1923 } }, { "name": "ImGuiStyleVar_TreeLinesSize", - "value": 31, + "value": 32, "is_count": false, "comments": { "attached": "// float TreeLinesSize" @@ -7801,12 +7734,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1895 + "line": 1924 } }, { "name": "ImGuiStyleVar_TreeLinesRounding", - "value": 32, + "value": 33, "is_count": false, "comments": { "attached": "// float TreeLinesRounding" @@ -7814,12 +7747,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1896 + "line": 1925 } }, { "name": "ImGuiStyleVar_ButtonTextAlign", - "value": 33, + "value": 34, "is_count": false, "comments": { "attached": "// ImVec2 ButtonTextAlign" @@ -7827,12 +7760,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1897 + "line": 1926 } }, { "name": "ImGuiStyleVar_SelectableTextAlign", - "value": 34, + "value": 35, "is_count": false, "comments": { "attached": "// ImVec2 SelectableTextAlign" @@ -7840,12 +7773,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1898 + "line": 1927 } }, { "name": "ImGuiStyleVar_SeparatorTextBorderSize", - "value": 35, + "value": 36, "is_count": false, "comments": { "attached": "// float SeparatorTextBorderSize" @@ -7853,12 +7786,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1899 + "line": 1928 } }, { "name": "ImGuiStyleVar_SeparatorTextAlign", - "value": 36, + "value": 37, "is_count": false, "comments": { "attached": "// ImVec2 SeparatorTextAlign" @@ -7866,12 +7799,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1900 + "line": 1929 } }, { "name": "ImGuiStyleVar_SeparatorTextPadding", - "value": 37, + "value": 38, "is_count": false, "comments": { "attached": "// ImVec2 SeparatorTextPadding" @@ -7879,12 +7812,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1901 + "line": 1930 } }, { "name": "ImGuiStyleVar_DockingSeparatorSize", - "value": 38, + "value": 39, "is_count": false, "comments": { "attached": "// float DockingSeparatorSize" @@ -7892,17 +7825,17 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1902 + "line": 1931 } }, { "name": "ImGuiStyleVar_COUNT", - "value": 39, + "value": 40, "is_count": true, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1903 + "line": 1932 } } ], @@ -7912,16 +7845,16 @@ "// - The enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code.", "// During initialization or between frames, feel free to just poke into ImGuiStyle directly.", "// - Tip: Use your programming IDE navigation facilities on the names in the _second column_ below to find the actual members and their description.", - "// - In Visual Studio: CTRL+comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas CTRL+F12 (\"Edit.GoToImplementation\") cannot.", - "// - In Visual Studio w/ Visual Assist installed: ALT+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", - "// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments.", + "// - In Visual Studio: Ctrl+Comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas Ctrl+F12 (\"Edit.GoToImplementation\") cannot.", + "// - In Visual Studio w/ Visual Assist installed: Alt+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", + "// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments.", "// - When changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type." ] }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1861 + "line": 1889 } }, { @@ -7937,7 +7870,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1909 + "line": 1938 } }, { @@ -7951,7 +7884,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1910 + "line": 1939 } }, { @@ -7965,7 +7898,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1911 + "line": 1940 } }, { @@ -7979,7 +7912,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1912 + "line": 1941 } }, { @@ -7993,7 +7926,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1913 + "line": 1942 } }, { @@ -8007,7 +7940,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1914 + "line": 1943 } } ], @@ -8019,7 +7952,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1907 + "line": 1936 } }, { @@ -8035,7 +7968,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1920 + "line": 1949 } }, { @@ -8049,7 +7982,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1921 + "line": 1950 } }, { @@ -8063,7 +7996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1922 + "line": 1951 } }, { @@ -8077,7 +8010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1923 + "line": 1952 } }, { @@ -8091,7 +8024,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1924 + "line": 1953 } }, { @@ -8105,7 +8038,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1925 + "line": 1954 } }, { @@ -8119,7 +8052,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1926 + "line": 1955 } }, { @@ -8133,7 +8066,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1927 + "line": 1956 } }, { @@ -8147,7 +8080,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1928 + "line": 1957 } }, { @@ -8161,7 +8094,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1929 + "line": 1958 } }, { @@ -8175,7 +8108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1930 + "line": 1959 } }, { @@ -8195,7 +8128,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1936 + "line": 1965 } }, { @@ -8209,7 +8142,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1937 + "line": 1966 } }, { @@ -8223,7 +8156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1938 + "line": 1967 } }, { @@ -8240,7 +8173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1941 + "line": 1970 } }, { @@ -8254,7 +8187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1942 + "line": 1971 } }, { @@ -8268,7 +8201,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1943 + "line": 1972 } }, { @@ -8282,7 +8215,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1944 + "line": 1973 } }, { @@ -8296,7 +8229,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1945 + "line": 1974 } }, { @@ -8310,7 +8243,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1946 + "line": 1975 } }, { @@ -8324,7 +8257,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1947 + "line": 1976 } }, { @@ -8338,7 +8271,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1948 + "line": 1977 } }, { @@ -8352,7 +8285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1949 + "line": 1978 } }, { @@ -8366,7 +8299,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1950 + "line": 1979 } }, { @@ -8380,7 +8313,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1951 + "line": 1980 } }, { @@ -8397,7 +8330,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1955 + "line": 1984 } }, { @@ -8413,7 +8346,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1958 + "line": 1987 } }, { @@ -8424,7 +8357,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1959 + "line": 1988 } }, { @@ -8435,7 +8368,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1960 + "line": 1989 } }, { @@ -8446,7 +8379,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1961 + "line": 1990 } }, { @@ -8457,7 +8390,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1962 + "line": 1991 } }, { @@ -8466,7 +8399,7 @@ "value": 0, "is_count": false, "comments": { - "attached": "// [Removed in 1.91.8] This is the default now. Will display a checkerboard unless ImGuiColorEditFlags_AlphaNoBg is set." + "attached": "// Removed in 1.91.8. This is the default now. Will display a checkerboard unless ImGuiColorEditFlags_AlphaNoBg is set." }, "conditionals": [ { @@ -8477,7 +8410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1966 + "line": 1995 } } ], @@ -8489,7 +8422,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1918 + "line": 1947 } }, { @@ -8505,7 +8438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1976 + "line": 2005 } }, { @@ -8519,7 +8452,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1977 + "line": 2006 } }, { @@ -8533,7 +8466,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1978 + "line": 2007 } }, { @@ -8542,12 +8475,12 @@ "value": 128, "is_count": false, "comments": { - "attached": "// Disable CTRL+Click or Enter key allowing to input text directly into the widget." + "attached": "// Disable Ctrl+Click or Enter key allowing to input text directly into the widget." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1979 + "line": 2008 } }, { @@ -8561,7 +8494,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1980 + "line": 2009 } }, { @@ -8570,12 +8503,12 @@ "value": 512, "is_count": false, "comments": { - "attached": "// Clamp value to min/max bounds when input manually with CTRL+Click. By default CTRL+Click allows going out of bounds." + "attached": "// Clamp value to min/max bounds when input manually with Ctrl+Click. By default Ctrl+Click allows going out of bounds." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1981 + "line": 2010 } }, { @@ -8589,7 +8522,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1982 + "line": 2011 } }, { @@ -8603,7 +8536,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1983 + "line": 2012 } }, { @@ -8614,7 +8547,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1984 + "line": 2013 } }, { @@ -8628,7 +8561,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 1985 + "line": 2014 } } ], @@ -8642,7 +8575,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1974 + "line": 2003 } }, { @@ -8658,7 +8591,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1992 + "line": 2021 } }, { @@ -8669,7 +8602,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1993 + "line": 2022 } }, { @@ -8680,7 +8613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1994 + "line": 2023 } }, { @@ -8691,7 +8624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1995 + "line": 2024 } } ], @@ -8704,7 +8637,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1990 + "line": 2019 } }, { @@ -8720,7 +8653,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2002 + "line": 2031 } }, { @@ -8731,7 +8664,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2003 + "line": 2032 } }, { @@ -8744,7 +8677,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2004 + "line": 2033 } }, { @@ -8757,7 +8690,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2005 + "line": 2034 } }, { @@ -8770,7 +8703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2006 + "line": 2035 } }, { @@ -8783,7 +8716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2007 + "line": 2036 } }, { @@ -8796,7 +8729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2008 + "line": 2037 } }, { @@ -8809,7 +8742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2009 + "line": 2038 } }, { @@ -8822,7 +8755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2010 + "line": 2039 } }, { @@ -8835,7 +8768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2011 + "line": 2040 } }, { @@ -8848,7 +8781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2012 + "line": 2041 } }, { @@ -8861,7 +8794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2013 + "line": 2042 } }, { @@ -8871,7 +8804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2014 + "line": 2043 } } ], @@ -8884,7 +8817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2000 + "line": 2029 } }, { @@ -8910,7 +8843,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2023 + "line": 2052 } }, { @@ -8923,7 +8856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2024 + "line": 2053 } }, { @@ -8936,7 +8869,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2025 + "line": 2054 } }, { @@ -8946,7 +8879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2026 + "line": 2055 } } ], @@ -8962,7 +8895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2021 + "line": 2050 } }, { @@ -8981,7 +8914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2034 + "line": 2063 } }, { @@ -8995,7 +8928,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2035 + "line": 2064 } }, { @@ -9009,7 +8942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2036 + "line": 2065 } }, { @@ -9023,7 +8956,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2037 + "line": 2066 } }, { @@ -9037,7 +8970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2038 + "line": 2067 } } ], @@ -9051,7 +8984,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2032 + "line": 2061 } }, { @@ -9072,7 +9005,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2070 + "line": 2099 } }, { @@ -9086,7 +9019,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2071 + "line": 2100 } }, { @@ -9100,7 +9033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2072 + "line": 2101 } }, { @@ -9114,7 +9047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2073 + "line": 2102 } }, { @@ -9128,7 +9061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2074 + "line": 2103 } }, { @@ -9142,7 +9075,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2075 + "line": 2104 } }, { @@ -9156,7 +9089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2076 + "line": 2105 } }, { @@ -9173,7 +9106,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2078 + "line": 2107 } }, { @@ -9187,7 +9120,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2079 + "line": 2108 } }, { @@ -9201,7 +9134,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2080 + "line": 2109 } }, { @@ -9215,7 +9148,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2081 + "line": 2110 } }, { @@ -9229,7 +9162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2082 + "line": 2111 } }, { @@ -9243,7 +9176,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2083 + "line": 2112 } }, { @@ -9257,7 +9190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2084 + "line": 2113 } }, { @@ -9271,7 +9204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2085 + "line": 2114 } }, { @@ -9285,7 +9218,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2086 + "line": 2115 } }, { @@ -9299,7 +9232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2087 + "line": 2116 } }, { @@ -9313,7 +9246,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2088 + "line": 2117 } }, { @@ -9327,7 +9260,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2089 + "line": 2118 } }, { @@ -9344,7 +9277,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2091 + "line": 2120 } }, { @@ -9358,7 +9291,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2092 + "line": 2121 } }, { @@ -9372,7 +9305,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2093 + "line": 2122 } }, { @@ -9386,7 +9319,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2094 + "line": 2123 } }, { @@ -9403,7 +9336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2096 + "line": 2125 } }, { @@ -9417,7 +9350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2097 + "line": 2126 } }, { @@ -9431,7 +9364,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2098 + "line": 2127 } }, { @@ -9445,7 +9378,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2099 + "line": 2128 } }, { @@ -9462,7 +9395,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2101 + "line": 2130 } }, { @@ -9479,7 +9412,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2103 + "line": 2132 } }, { @@ -9493,7 +9426,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2104 + "line": 2133 } }, { @@ -9507,7 +9440,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2105 + "line": 2134 } }, { @@ -9524,7 +9457,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2107 + "line": 2136 } }, { @@ -9538,7 +9471,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2108 + "line": 2137 } }, { @@ -9555,7 +9488,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2110 + "line": 2139 } }, { @@ -9569,7 +9502,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2111 + "line": 2140 } }, { @@ -9586,7 +9519,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2113 + "line": 2142 } }, { @@ -9602,7 +9535,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2116 + "line": 2145 } } ], @@ -9635,7 +9568,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2067 + "line": 2096 } }, { @@ -9656,7 +9589,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2123 + "line": 2152 } }, { @@ -9670,7 +9603,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2124 + "line": 2153 } }, { @@ -9684,7 +9617,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2125 + "line": 2154 } }, { @@ -9698,7 +9631,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2126 + "line": 2155 } }, { @@ -9712,7 +9645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2127 + "line": 2156 } }, { @@ -9726,7 +9659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2128 + "line": 2157 } }, { @@ -9740,7 +9673,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2129 + "line": 2158 } }, { @@ -9754,7 +9687,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2130 + "line": 2159 } }, { @@ -9768,7 +9701,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2131 + "line": 2160 } }, { @@ -9782,7 +9715,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2132 + "line": 2161 } }, { @@ -9796,7 +9729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2133 + "line": 2162 } }, { @@ -9810,7 +9743,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2134 + "line": 2163 } }, { @@ -9824,7 +9757,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2135 + "line": 2164 } }, { @@ -9838,7 +9771,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2136 + "line": 2165 } }, { @@ -9852,7 +9785,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2137 + "line": 2166 } }, { @@ -9866,7 +9799,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2138 + "line": 2167 } }, { @@ -9880,7 +9813,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2139 + "line": 2168 } }, { @@ -9894,7 +9827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2140 + "line": 2169 } }, { @@ -9908,7 +9841,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2141 + "line": 2170 } }, { @@ -9922,7 +9855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2142 + "line": 2171 } }, { @@ -9939,7 +9872,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2145 + "line": 2174 } }, { @@ -9953,7 +9886,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2146 + "line": 2175 } }, { @@ -9967,7 +9900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2147 + "line": 2176 } }, { @@ -9981,7 +9914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2148 + "line": 2177 } }, { @@ -9997,7 +9930,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2151 + "line": 2180 } }, { @@ -10008,7 +9941,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2152 + "line": 2181 } }, { @@ -10019,7 +9952,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2153 + "line": 2182 } }, { @@ -10033,7 +9966,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2154 + "line": 2183 } } ], @@ -10045,7 +9978,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2120 + "line": 2149 } }, { @@ -10061,7 +9994,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2160 + "line": 2189 } }, { @@ -10075,7 +10008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2161 + "line": 2190 } } ], @@ -10087,7 +10020,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2158 + "line": 2187 } }, { @@ -10103,7 +10036,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2175 + "line": 2204 } }, { @@ -10117,7 +10050,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2176 + "line": 2205 } }, { @@ -10131,7 +10064,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2177 + "line": 2206 } }, { @@ -10145,7 +10078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2178 + "line": 2207 } } ], @@ -10165,7 +10098,49 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2173 + "line": 2202 + } + }, + { + "name": "ImGuiListClipperFlags_", + "original_fully_qualified_name": "ImGuiListClipperFlags_", + "is_flags_enum": true, + "elements": [ + { + "name": "ImGuiListClipperFlags_None", + "value_expression": "0", + "value": 0, + "is_count": false, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2941 + } + }, + { + "name": "ImGuiListClipperFlags_NoSetTableRowCounters", + "value_expression": "1<<0", + "value": 1, + "is_count": false, + "comments": { + "attached": "// [Internal] Disabled modifying table row counters. Avoid assumption that 1 clipper item == 1 table row." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2942 + } + } + ], + "comments": { + "preceding": [ + "// Flags for ImGuiListClipper (currently not fully exposed in function calls: a future refactor will likely add this to ImGuiListClipper::Begin function equivalent)" + ] + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2939 } }, { @@ -10181,7 +10156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3084 + "line": 3126 } }, { @@ -10195,7 +10170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3085 + "line": 3127 } }, { @@ -10204,12 +10179,12 @@ "value": 2, "is_count": false, "comments": { - "attached": "// Disable CTRL+A shortcut to select all." + "attached": "// Disable Ctrl+A shortcut to select all." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3086 + "line": 3128 } }, { @@ -10223,7 +10198,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3087 + "line": 3129 } }, { @@ -10237,7 +10212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3088 + "line": 3130 } }, { @@ -10251,7 +10226,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3089 + "line": 3131 } }, { @@ -10265,7 +10240,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3090 + "line": 3132 } }, { @@ -10279,7 +10254,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3091 + "line": 3133 } }, { @@ -10293,7 +10268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3092 + "line": 3134 } }, { @@ -10307,7 +10282,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3093 + "line": 3135 } }, { @@ -10321,7 +10296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3094 + "line": 3136 } }, { @@ -10335,7 +10310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3095 + "line": 3137 } }, { @@ -10349,7 +10324,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3096 + "line": 3138 } }, { @@ -10363,7 +10338,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3097 + "line": 3139 } }, { @@ -10377,7 +10352,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3098 + "line": 3140 } }, { @@ -10391,7 +10366,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3099 + "line": 3141 } }, { @@ -10408,7 +10383,21 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3101 + "line": 3143 + } + }, + { + "name": "ImGuiMultiSelectFlags_NoSelectOnRightClick", + "value_expression": "1<<17", + "value": 131072, + "is_count": false, + "comments": { + "attached": "// Disable default right-click processing, which selects item on mouse down, and is designed for context-menus." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 3144 } } ], @@ -10420,7 +10409,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3082 + "line": 3124 } }, { @@ -10436,7 +10425,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3123 + "line": 3166 } }, { @@ -10449,7 +10438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3124 + "line": 3167 } }, { @@ -10462,7 +10451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3125 + "line": 3168 } } ], @@ -10474,7 +10463,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3121 + "line": 3164 } }, { @@ -10490,7 +10479,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3299 + "line": 3342 } }, { @@ -10504,7 +10493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3300 + "line": 3343 } }, { @@ -10518,7 +10507,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3301 + "line": 3344 } }, { @@ -10532,7 +10521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3302 + "line": 3345 } }, { @@ -10546,7 +10535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3303 + "line": 3346 } }, { @@ -10560,7 +10549,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3304 + "line": 3347 } }, { @@ -10574,7 +10563,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3305 + "line": 3348 } }, { @@ -10585,7 +10574,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3306 + "line": 3349 } }, { @@ -10596,7 +10585,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3307 + "line": 3350 } }, { @@ -10607,7 +10596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3308 + "line": 3351 } }, { @@ -10618,7 +10607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3309 + "line": 3352 } }, { @@ -10629,7 +10618,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3310 + "line": 3353 } }, { @@ -10643,7 +10632,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3311 + "line": 3354 } }, { @@ -10654,7 +10643,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3312 + "line": 3355 } } ], @@ -10667,7 +10656,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3297 + "line": 3340 } }, { @@ -10683,7 +10672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3319 + "line": 3362 } }, { @@ -10697,7 +10686,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3320 + "line": 3363 } }, { @@ -10711,7 +10700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3321 + "line": 3364 } }, { @@ -10725,7 +10714,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3322 + "line": 3365 } }, { @@ -10739,7 +10728,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3323 + "line": 3366 } } ], @@ -10752,7 +10741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3317 + "line": 3360 } }, { @@ -10770,7 +10759,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3528 + "line": 3571 } }, { @@ -10783,7 +10772,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3529 + "line": 3572 } } ], @@ -10795,7 +10784,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3526 + "line": 3569 } }, { @@ -10810,7 +10799,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3535 + "line": 3578 } }, { @@ -10823,7 +10812,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3536 + "line": 3579 } }, { @@ -10836,7 +10825,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3537 + "line": 3580 } }, { @@ -10849,7 +10838,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3538 + "line": 3581 } }, { @@ -10862,7 +10851,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3539 + "line": 3582 } } ], @@ -10874,7 +10863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3533 + "line": 3576 } }, { @@ -10890,7 +10879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3690 + "line": 3735 } }, { @@ -10904,7 +10893,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3691 + "line": 3736 } }, { @@ -10918,7 +10907,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3692 + "line": 3737 } }, { @@ -10932,7 +10921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3693 + "line": 3738 } } ], @@ -10944,7 +10933,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3688 + "line": 3733 } }, { @@ -10960,7 +10949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3901 + "line": 3946 } }, { @@ -10974,7 +10963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3902 + "line": 3947 } }, { @@ -10988,7 +10977,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3903 + "line": 3948 } }, { @@ -11002,7 +10991,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3904 + "line": 3949 } } ], @@ -11015,7 +11004,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3899 + "line": 3944 } }, { @@ -11031,7 +11020,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3984 + "line": 4029 } }, { @@ -11045,7 +11034,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3985 + "line": 4030 } }, { @@ -11059,7 +11048,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3986 + "line": 4031 } }, { @@ -11073,7 +11062,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3987 + "line": 4032 } }, { @@ -11087,7 +11076,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3988 + "line": 4033 } }, { @@ -11101,7 +11090,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3989 + "line": 4034 } }, { @@ -11115,7 +11104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3990 + "line": 4035 } }, { @@ -11129,7 +11118,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3991 + "line": 4036 } }, { @@ -11143,7 +11132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3992 + "line": 4037 } }, { @@ -11157,7 +11146,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3993 + "line": 4038 } }, { @@ -11171,7 +11160,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3994 + "line": 4039 } }, { @@ -11185,7 +11174,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3995 + "line": 4040 } }, { @@ -11199,7 +11188,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3996 + "line": 4041 } }, { @@ -11216,7 +11205,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3999 + "line": 4044 } }, { @@ -11230,7 +11219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4000 + "line": 4045 } } ], @@ -11242,7 +11231,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3982 + "line": 4027 } } ], @@ -11417,9 +11406,9 @@ "// Enumerations", "// - We don't use strongly typed enums much because they add constraints (can't extend in private code, can't store typed in bit fields, extra casting on iteration)", "// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists!", - "// - In Visual Studio: CTRL+comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas CTRL+F12 (\"Edit.GoToImplementation\") cannot.", - "// - In Visual Studio w/ Visual Assist installed: ALT+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", - "// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments." + "// - In Visual Studio: Ctrl+Comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas Ctrl+F12 (\"Edit.GoToImplementation\") cannot.", + "// - In Visual Studio w/ Visual Assist installed: Alt+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", + "// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments." ], "attached": "// -> enum ImGuiDir // Enum: A cardinal direction (Left, Right, Up, Down)" }, @@ -11611,9 +11600,9 @@ "preceding": [ "// Flags (declared as int to allow using as flags without overhead, and to not pollute the top of this file)", "// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists!", - "// - In Visual Studio: CTRL+comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas CTRL+F12 (\"Edit.GoToImplementation\") cannot.", - "// - In Visual Studio w/ Visual Assist installed: ALT+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", - "// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments." + "// - In Visual Studio: Ctrl+Comma (\"Edit.GoToAll\") can follow symbols inside comments, whereas Ctrl+F12 (\"Edit.GoToImplementation\") cannot.", + "// - In Visual Studio w/ Visual Assist installed: Alt+G (\"VAssistX.GoToImplementation\") can also follow symbols inside comments.", + "// - In VS Code, CLion, etc.: Ctrl+Click can follow symbols inside comments." ], "attached": "// -> enum ImDrawFlags_ // Flags: for ImDrawList functions" }, @@ -11639,6 +11628,23 @@ "filename": "imgui.h" } }, + { + "name": "ImDrawTextFlags", + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// -> enum ImDrawTextFlags_ // Internal, do not use!" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h" + } + }, { "name": "ImFontFlags", "type": { @@ -11911,6 +11917,23 @@ "filename": "imgui.h" } }, + { + "name": "ImGuiListClipperFlags", + "type": { + "declaration": "int", + "description": { + "kind": "Builtin", + "builtin_type": "int" + } + }, + "comments": { + "attached": "// -> enum ImGuiListClipperFlags_// Flags: for ImGuiListClipper" + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h" + } + }, { "name": "ImGuiPopupFlags", "type": { @@ -12730,7 +12753,7 @@ }, "comments": { "preceding": [ - "//-- OBSOLETED in 1.92.x: ImFontAtlasCustomRect becomes ImTextureRect", + "//-- OBSOLETED in 1.92.0: ImFontAtlasCustomRect becomes ImTextureRect", "// - ImFontAtlasCustomRect::X,Y --> ImTextureRect::x,y", "// - ImFontAtlasCustomRect::Width,Height --> ImTextureRect::w,h", "// - ImFontAtlasCustomRect::GlyphColored --> if you need to write to this, instead you can write to 'font->Glyphs.back()->Colored' after calling AddCustomRectFontGlyph()", @@ -12764,7 +12787,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 171 + "line": 177 } }, { @@ -12781,7 +12804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 176 + "line": 182 } }, { @@ -12798,7 +12821,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 182 + "line": 188 } }, { @@ -12818,7 +12841,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 188 + "line": 194 } }, { @@ -12843,7 +12866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 294 + "line": 302 } }, { @@ -12860,14 +12883,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 294 + "line": 302 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 292 + "line": 300 } }, { @@ -12892,7 +12915,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } }, { @@ -12909,7 +12932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } }, { @@ -12926,7 +12949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } }, { @@ -12943,7 +12966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 307 + "line": 315 } } ], @@ -12955,7 +12978,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 305 + "line": 313 } }, { @@ -12989,7 +13012,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 373 + "line": 381 } }, { @@ -13009,14 +13032,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 374 + "line": 382 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 362 + "line": 370 } }, { @@ -13050,7 +13073,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2187 + "line": 2216 } }, { @@ -13070,7 +13093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2188 + "line": 2217 } }, { @@ -13090,7 +13113,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2189 + "line": 2218 } } ], @@ -13105,7 +13128,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2185 + "line": 2214 } }, { @@ -13133,7 +13156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2197 + "line": 2226 } }, { @@ -13153,7 +13176,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2198 + "line": 2227 } }, { @@ -13173,7 +13196,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2199 + "line": 2228 } }, { @@ -13193,7 +13216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2200 + "line": 2229 } } ], @@ -13205,7 +13228,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2195 + "line": 2224 } }, { @@ -13230,7 +13253,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13247,7 +13270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13267,7 +13290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13277,7 +13300,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13302,7 +13325,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13319,7 +13342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13339,7 +13362,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13349,7 +13372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13374,7 +13397,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13391,7 +13414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13411,7 +13434,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13421,7 +13444,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13446,7 +13469,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13463,7 +13486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13483,7 +13506,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13493,7 +13516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13518,7 +13541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13535,7 +13558,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13555,7 +13578,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13565,7 +13588,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13590,7 +13613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13607,7 +13630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13627,7 +13650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13637,7 +13660,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13662,7 +13685,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13679,7 +13702,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13699,7 +13722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13709,7 +13732,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13734,7 +13757,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13751,7 +13774,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13771,7 +13794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13781,7 +13804,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13806,7 +13829,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13823,7 +13846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13843,7 +13866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13853,7 +13876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13878,7 +13901,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13895,7 +13918,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13915,7 +13938,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -13925,7 +13948,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -13950,7 +13973,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -13967,7 +13990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -13990,7 +14013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14000,7 +14023,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14025,7 +14048,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14042,7 +14065,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14062,7 +14085,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14072,7 +14095,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14097,7 +14120,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14114,7 +14137,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14137,7 +14160,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14147,7 +14170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14172,7 +14195,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14189,7 +14212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14209,7 +14232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14219,7 +14242,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14244,7 +14267,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14261,7 +14284,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14281,7 +14304,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14291,7 +14314,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14316,7 +14339,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14333,7 +14356,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14356,7 +14379,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14366,7 +14389,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14391,7 +14414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14408,7 +14431,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14428,7 +14451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14438,7 +14461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14463,7 +14486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14480,7 +14503,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14503,7 +14526,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14513,7 +14536,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14538,7 +14561,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14555,7 +14578,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14575,7 +14598,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14585,7 +14608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14610,7 +14633,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14627,7 +14650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14647,7 +14670,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14657,7 +14680,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14682,7 +14705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14699,7 +14722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14719,7 +14742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14729,7 +14752,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14754,7 +14777,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14771,7 +14794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14794,7 +14817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14804,7 +14827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14829,7 +14852,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14846,7 +14869,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14866,7 +14889,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14876,7 +14899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14901,7 +14924,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14918,7 +14941,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -14938,7 +14961,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -14948,7 +14971,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -14973,7 +14996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -14990,7 +15013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -15013,7 +15036,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -15023,7 +15046,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -15048,7 +15071,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2249 + "line": 2278 } }, { @@ -15065,7 +15088,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2250 + "line": 2279 } }, { @@ -15085,7 +15108,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2251 + "line": 2280 } } ], @@ -15095,7 +15118,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2247 + "line": 2276 } }, { @@ -15127,7 +15150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2323 + "line": 2352 } }, { @@ -15147,7 +15170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2324 + "line": 2353 } }, { @@ -15167,7 +15190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2325 + "line": 2354 } }, { @@ -15187,7 +15210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2327 + "line": 2356 } }, { @@ -15207,7 +15230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2328 + "line": 2357 } }, { @@ -15227,7 +15250,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2329 + "line": 2358 } }, { @@ -15247,7 +15270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2330 + "line": 2359 } }, { @@ -15267,7 +15290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2331 + "line": 2360 } }, { @@ -15287,7 +15310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2332 + "line": 2361 } }, { @@ -15307,7 +15330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2333 + "line": 2362 } }, { @@ -15327,7 +15350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2334 + "line": 2363 } }, { @@ -15347,7 +15370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2335 + "line": 2364 } }, { @@ -15367,7 +15390,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2336 + "line": 2365 } }, { @@ -15387,7 +15410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2337 + "line": 2366 } }, { @@ -15407,7 +15430,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2338 + "line": 2367 } }, { @@ -15427,7 +15450,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2339 + "line": 2368 } }, { @@ -15447,7 +15470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2340 + "line": 2369 } }, { @@ -15467,7 +15490,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2341 + "line": 2370 } }, { @@ -15487,7 +15510,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2342 + "line": 2371 } }, { @@ -15507,7 +15530,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2343 + "line": 2372 } }, { @@ -15527,7 +15550,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2344 + "line": 2373 } }, { @@ -15547,7 +15570,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2345 + "line": 2374 } }, { @@ -15567,7 +15590,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2346 + "line": 2375 } }, { @@ -15587,7 +15610,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2347 + "line": 2376 } }, { @@ -15607,7 +15630,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2348 + "line": 2377 } }, { @@ -15627,7 +15650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2349 + "line": 2378 } }, { @@ -15647,7 +15670,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2350 + "line": 2379 + } + }, + { + "name": "ScrollbarPadding", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Padding of scrollbar grab within its frame (same for both axes)." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2380 } }, { @@ -15667,7 +15710,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2351 + "line": 2381 } }, { @@ -15687,7 +15730,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2352 + "line": 2382 } }, { @@ -15707,7 +15750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2353 + "line": 2383 } }, { @@ -15727,7 +15770,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2354 + "line": 2384 } }, { @@ -15747,7 +15790,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2355 + "line": 2385 } }, { @@ -15767,7 +15810,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2356 + "line": 2386 } }, { @@ -15787,7 +15830,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2357 + "line": 2387 } }, { @@ -15807,7 +15850,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2358 + "line": 2388 } }, { @@ -15827,7 +15870,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2359 + "line": 2389 } }, { @@ -15847,7 +15890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2360 + "line": 2390 } }, { @@ -15867,7 +15910,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2361 + "line": 2391 } }, { @@ -15887,7 +15930,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2362 + "line": 2392 } }, { @@ -15907,7 +15950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2363 + "line": 2393 } }, { @@ -15927,7 +15970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2364 + "line": 2394 } }, { @@ -15947,7 +15990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2365 + "line": 2395 } }, { @@ -15967,7 +16010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2366 + "line": 2396 } }, { @@ -15987,7 +16030,67 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2367 + "line": 2397 + } + }, + { + "name": "DragDropTargetRounding", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Radius of the drag and drop target frame." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2398 + } + }, + { + "name": "DragDropTargetBorderSize", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Thickness of the drag and drop target border." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2399 + } + }, + { + "name": "DragDropTargetPadding", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "float", + "description": { + "kind": "Builtin", + "builtin_type": "float" + } + }, + "comments": { + "attached": "// Size to expand the drag and drop target from actual target item size." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2400 } }, { @@ -16007,7 +16110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2368 + "line": 2401 } }, { @@ -16027,7 +16130,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2369 + "line": 2402 } }, { @@ -16047,7 +16150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2370 + "line": 2403 } }, { @@ -16067,7 +16170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2371 + "line": 2404 } }, { @@ -16087,7 +16190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2372 + "line": 2405 } }, { @@ -16107,7 +16210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2373 + "line": 2406 } }, { @@ -16127,7 +16230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2374 + "line": 2407 } }, { @@ -16147,7 +16250,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2375 + "line": 2408 + } + }, + { + "name": "DockingNodeHasCloseButton", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// Docking node has their own CloseButton() to close all docked windows." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2409 } }, { @@ -16167,7 +16290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2376 + "line": 2410 } }, { @@ -16187,7 +16310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2377 + "line": 2411 } }, { @@ -16207,7 +16330,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2378 + "line": 2412 } }, { @@ -16227,7 +16350,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2379 + "line": 2413 } }, { @@ -16247,7 +16370,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2380 + "line": 2414 } }, { @@ -16267,7 +16390,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2381 + "line": 2415 } }, { @@ -16287,7 +16410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2382 + "line": 2416 } }, { @@ -16314,7 +16437,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2385 + "line": 2419 } }, { @@ -16338,7 +16461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2389 + "line": 2423 } }, { @@ -16358,7 +16481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2390 + "line": 2424 } }, { @@ -16378,7 +16501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2391 + "line": 2425 } }, { @@ -16398,7 +16521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2392 + "line": 2426 } }, { @@ -16418,7 +16541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2393 + "line": 2427 } }, { @@ -16441,7 +16564,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2396 + "line": 2430 } }, { @@ -16461,14 +16584,14 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2397 + "line": 2431 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2319 + "line": 2348 } }, { @@ -16496,7 +16619,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2425 + "line": 2459 } }, { @@ -16516,7 +16639,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2426 + "line": 2460 } }, { @@ -16536,7 +16659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2427 + "line": 2461 } }, { @@ -16556,7 +16679,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2428 + "line": 2462 } } ], @@ -16569,7 +16692,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2423 + "line": 2457 } }, { @@ -16597,7 +16720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2437 + "line": 2471 } }, { @@ -16617,7 +16740,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2438 + "line": 2472 } }, { @@ -16637,7 +16760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2439 + "line": 2473 } }, { @@ -16657,7 +16780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2440 + "line": 2474 } }, { @@ -16677,7 +16800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2441 + "line": 2475 } }, { @@ -16697,7 +16820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2442 + "line": 2476 } }, { @@ -16723,7 +16846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2443 + "line": 2477 } }, { @@ -16749,7 +16872,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2444 + "line": 2478 } }, { @@ -16772,7 +16895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2445 + "line": 2479 } }, { @@ -16798,7 +16921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2448 + "line": 2482 } }, { @@ -16821,7 +16944,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2449 + "line": 2483 } }, { @@ -16836,12 +16959,12 @@ } }, "comments": { - "attached": "// = false // [OBSOLETE] Allow user scaling text of individual window with CTRL+Wheel." + "attached": "// = false // Allow user scaling text of individual window with Ctrl+Wheel." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2450 + "line": 2484 } }, { @@ -16864,7 +16987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2453 + "line": 2487 } }, { @@ -16884,7 +17007,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2454 + "line": 2488 } }, { @@ -16904,7 +17027,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2455 + "line": 2489 } }, { @@ -16924,7 +17047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2456 + "line": 2490 } }, { @@ -16944,7 +17067,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2457 + "line": 2491 } }, { @@ -16964,7 +17087,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2458 + "line": 2492 } }, { @@ -16984,7 +17107,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2459 + "line": 2493 } }, { @@ -17007,7 +17130,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2462 + "line": 2496 + } + }, + { + "name": "ConfigDockingNoDockingOver", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "bool", + "description": { + "kind": "Builtin", + "builtin_type": "bool" + } + }, + "comments": { + "attached": "// = false // Simplified docking mode: disable window merging into a same tab-bar, so docking is limited to splitting windows." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2497 } }, { @@ -17027,7 +17170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2463 + "line": 2498 } }, { @@ -17047,7 +17190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2464 + "line": 2499 } }, { @@ -17067,7 +17210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2465 + "line": 2500 } }, { @@ -17090,7 +17233,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2468 + "line": 2503 } }, { @@ -17110,7 +17253,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2469 + "line": 2504 } }, { @@ -17130,7 +17273,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2470 + "line": 2505 } }, { @@ -17145,16 +17288,16 @@ } }, "comments": { - "attached": "// = false // Disable default OS parenting to main viewport for secondary viewports. By default, viewports are marked with ParentViewportId = , expecting the platform backend to setup a parent/child relationship between the OS windows (some backend may ignore this). Set to true if you want the default to be 0, then all viewports will be top-level OS windows." + "attached": "// = true // When false: set secondary viewports' ParentViewportId to main viewport ID by default. Expects the platform backend to setup a parent/child relationship between the OS windows based on this value. Some backend may ignore this. Set to true if you want viewports to automatically be parent of main viewport, otherwise all viewports will be top-level OS windows." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2471 + "line": 2506 } }, { - "name": "ConfigViewportPlatformFocusSetsImGuiFocus", + "name": "ConfigViewportsPlatformFocusSetsImGuiFocus", "is_array": false, "is_anonymous": false, "type": { @@ -17170,7 +17313,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2472 + "line": 2507 } }, { @@ -17194,7 +17337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2476 + "line": 2511 } }, { @@ -17214,7 +17357,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2477 + "line": 2512 } }, { @@ -17238,7 +17381,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2481 + "line": 2516 } }, { @@ -17258,7 +17401,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2482 + "line": 2517 } }, { @@ -17278,7 +17421,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2483 + "line": 2518 } }, { @@ -17298,7 +17441,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2484 + "line": 2519 } }, { @@ -17318,7 +17461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2485 + "line": 2520 } }, { @@ -17338,7 +17481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2486 + "line": 2521 } }, { @@ -17358,7 +17501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2487 + "line": 2522 } }, { @@ -17378,7 +17521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2488 + "line": 2523 } }, { @@ -17393,12 +17536,12 @@ } }, "comments": { - "attached": "// = false // [EXPERIMENTAL] CTRL+C copy the contents of focused window into the clipboard. Experimental because: (1) has known issues with nested Begin/End pairs (2) text output quality varies (3) text output is in submission order rather than spatial order." + "attached": "// = false // [EXPERIMENTAL] Ctrl+C copy the contents of focused window into the clipboard. Experimental because: (1) has known issues with nested Begin/End pairs (2) text output quality varies (3) text output is in submission order rather than spatial order." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2489 + "line": 2524 } }, { @@ -17418,7 +17561,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2490 + "line": 2525 } }, { @@ -17438,7 +17581,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2491 + "line": 2526 } }, { @@ -17462,7 +17605,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2495 + "line": 2530 } }, { @@ -17482,7 +17625,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2496 + "line": 2531 } }, { @@ -17502,7 +17645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2497 + "line": 2532 } }, { @@ -17522,7 +17665,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2498 + "line": 2533 } }, { @@ -17542,7 +17685,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2499 + "line": 2534 } }, { @@ -17578,7 +17721,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2519 + "line": 2554 } }, { @@ -17598,7 +17741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2520 + "line": 2555 } }, { @@ -17618,7 +17761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2521 + "line": 2556 } }, { @@ -17638,7 +17781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2522 + "line": 2557 } }, { @@ -17657,14 +17800,14 @@ "// Option to enable various debug tools showing buttons that will call the IM_DEBUG_BREAK() macro.", "// - The Item Picker tool will be available regardless of this being enabled, in order to maximize its discoverability.", "// - Requires a debugger being attached, otherwise IM_DEBUG_BREAK() options will appear to crash your application.", - "// e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version)." + "// e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version." ], "attached": "// = false // Enable various tools calling IM_DEBUG_BREAK()." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2528 + "line": 2563 } }, { @@ -17690,7 +17833,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2534 + "line": 2569 } }, { @@ -17710,7 +17853,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2535 + "line": 2570 } }, { @@ -17736,7 +17879,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2541 + "line": 2576 } }, { @@ -17756,7 +17899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2542 + "line": 2577 } }, { @@ -17781,7 +17924,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2547 + "line": 2582 } }, { @@ -17804,7 +17947,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2550 + "line": 2585 } }, { @@ -17834,7 +17977,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2559 + "line": 2594 } }, { @@ -17860,7 +18003,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2560 + "line": 2595 } }, { @@ -17883,7 +18026,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2561 + "line": 2596 } }, { @@ -17906,7 +18049,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2562 + "line": 2597 } }, { @@ -17929,7 +18072,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2563 + "line": 2598 } }, { @@ -17949,7 +18092,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2597 + "line": 2629 } }, { @@ -17969,7 +18112,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2598 + "line": 2630 } }, { @@ -17989,7 +18132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2599 + "line": 2631 } }, { @@ -18009,7 +18152,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2600 + "line": 2632 } }, { @@ -18029,7 +18172,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2601 + "line": 2633 } }, { @@ -18049,7 +18192,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2602 + "line": 2634 } }, { @@ -18069,7 +18212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2603 + "line": 2635 } }, { @@ -18089,7 +18232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2604 + "line": 2636 } }, { @@ -18109,7 +18252,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2605 + "line": 2637 } }, { @@ -18129,7 +18272,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2606 + "line": 2638 } }, { @@ -18149,7 +18292,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2607 + "line": 2639 } }, { @@ -18169,7 +18312,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2608 + "line": 2640 } }, { @@ -18189,7 +18332,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2609 + "line": 2641 } }, { @@ -18212,7 +18355,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2615 + "line": 2647 } }, { @@ -18237,7 +18380,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2620 + "line": 2652 } }, { @@ -18262,7 +18405,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2621 + "line": 2653 } }, { @@ -18277,12 +18420,12 @@ } }, "comments": { - "attached": "// Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold SHIFT to turn vertical scroll into horizontal scroll." + "attached": "// Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold Shift to turn vertical scroll into horizontal scroll." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2622 + "line": 2654 } }, { @@ -18302,7 +18445,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2623 + "line": 2655 } }, { @@ -18322,7 +18465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2624 + "line": 2656 } }, { @@ -18342,7 +18485,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2625 + "line": 2657 } }, { @@ -18362,7 +18505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2626 + "line": 2658 } }, { @@ -18382,7 +18525,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2627 + "line": 2659 } }, { @@ -18402,7 +18545,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2628 + "line": 2660 } }, { @@ -18422,7 +18565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2629 + "line": 2661 } }, { @@ -18440,12 +18583,12 @@ "preceding": [ "// Other state maintained from data above + IO function calls" ], - "attached": "// Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags. Read-only, updated by NewFrame()" + "attached": "// Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags). Read-only, updated by NewFrame()" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2632 + "line": 2664 } }, { @@ -18470,7 +18613,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2633 + "line": 2665 } }, { @@ -18490,7 +18633,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2634 + "line": 2666 } }, { @@ -18510,7 +18653,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2635 + "line": 2667 } }, { @@ -18535,7 +18678,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2636 + "line": 2668 } }, { @@ -18560,7 +18703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2637 + "line": 2669 } }, { @@ -18585,7 +18728,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2638 + "line": 2670 } }, { @@ -18610,7 +18753,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2639 + "line": 2671 } }, { @@ -18635,7 +18778,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2640 + "line": 2672 } }, { @@ -18660,7 +18803,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2641 + "line": 2673 } }, { @@ -18685,7 +18828,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2642 + "line": 2674 } }, { @@ -18710,7 +18853,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2643 + "line": 2675 } }, { @@ -18735,7 +18878,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2644 + "line": 2676 } }, { @@ -18760,7 +18903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2645 + "line": 2677 } }, { @@ -18775,12 +18918,12 @@ } }, "comments": { - "attached": "// On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system." + "attached": "// On a non-Mac system, holding Shift requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2646 + "line": 2678 } }, { @@ -18795,12 +18938,12 @@ } }, "comments": { - "attached": "// (OSX) Set to true when the current click was a Ctrl+click that spawned a simulated right click" + "attached": "// (OSX) Set to true when the current click was a Ctrl+Click that spawned a simulated right click" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2647 + "line": 2679 } }, { @@ -18825,7 +18968,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2648 + "line": 2680 } }, { @@ -18850,7 +18993,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2649 + "line": 2681 } }, { @@ -18875,7 +19018,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2650 + "line": 2682 } }, { @@ -18900,7 +19043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2651 + "line": 2683 } }, { @@ -18920,7 +19063,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2652 + "line": 2684 } }, { @@ -18940,7 +19083,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2653 + "line": 2685 } }, { @@ -18960,7 +19103,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2654 + "line": 2686 } }, { @@ -18980,7 +19123,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2655 + "line": 2687 } }, { @@ -19000,7 +19143,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2656 + "line": 2688 } }, { @@ -19026,7 +19169,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2669 + "line": 2701 } }, { @@ -19249,14 +19392,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2675 + "line": 2707 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2431 + "line": 2465 } }, { @@ -19287,7 +19430,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2696 + "line": 2730 } }, { @@ -19307,7 +19450,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2697 + "line": 2731 } }, { @@ -19327,7 +19470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2698 + "line": 2732 } }, { @@ -19350,7 +19493,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2699 + "line": 2733 } }, { @@ -19377,7 +19520,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2706 + "line": 2740 } }, { @@ -19397,7 +19540,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2707 + "line": 2741 } }, { @@ -19420,7 +19563,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2708 + "line": 2742 } }, { @@ -19440,7 +19583,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2709 + "line": 2743 } }, { @@ -19455,12 +19598,12 @@ } }, "comments": { - "attached": "// Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1" + "attached": "// Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land: == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2710 + "line": 2744 } }, { @@ -19480,7 +19623,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2711 + "line": 2745 } }, { @@ -19500,7 +19643,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2712 + "line": 2746 } }, { @@ -19515,12 +19658,12 @@ } }, "comments": { - "attached": "// // Read-write // [Completion,History,Always] == to SelectionEnd when no selection)" + "attached": "// // Read-write // [Completion,History,Always] == to SelectionEnd when no selection" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2713 + "line": 2747 } }, { @@ -19540,7 +19683,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2714 + "line": 2748 } } ], @@ -19560,7 +19703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2694 + "line": 2728 } }, { @@ -19591,7 +19734,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2730 + "line": 2764 } }, { @@ -19611,7 +19754,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2731 + "line": 2765 } }, { @@ -19631,7 +19774,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2732 + "line": 2766 } }, { @@ -19651,7 +19794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2733 + "line": 2767 } } ], @@ -19664,7 +19807,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2728 + "line": 2762 } }, { @@ -19692,7 +19835,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2745 + "line": 2779 } }, { @@ -19712,7 +19855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2746 + "line": 2780 } }, { @@ -19732,7 +19875,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2747 + "line": 2781 } }, { @@ -19752,7 +19895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2748 + "line": 2782 } }, { @@ -19772,7 +19915,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2749 + "line": 2783 } }, { @@ -19792,7 +19935,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2750 + "line": 2784 } }, { @@ -19812,7 +19955,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2751 + "line": 2785 } }, { @@ -19832,7 +19975,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2752 + "line": 2786 } }, { @@ -19852,7 +19995,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2753 + "line": 2787 } } ], @@ -19870,7 +20013,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2743 + "line": 2777 } }, { @@ -19904,7 +20047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2762 + "line": 2796 } }, { @@ -19924,7 +20067,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2763 + "line": 2797 } }, { @@ -19947,7 +20090,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2766 + "line": 2800 } }, { @@ -19967,7 +20110,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2767 + "line": 2801 } }, { @@ -19987,7 +20130,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2768 + "line": 2802 } }, { @@ -20012,7 +20155,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2769 + "line": 2803 } }, { @@ -20032,7 +20175,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2770 + "line": 2804 } }, { @@ -20052,7 +20195,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2771 + "line": 2805 } } ], @@ -20064,7 +20207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2759 + "line": 2793 } }, { @@ -20095,7 +20238,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2814 + "line": 2848 } }, { @@ -20118,7 +20261,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2815 + "line": 2849 } } ], @@ -20130,7 +20273,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2812 + "line": 2846 } }, { @@ -20160,7 +20303,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2822 + "line": 2856 } }, { @@ -20177,7 +20320,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2823 + "line": 2857 } }, { @@ -20194,7 +20337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2824 + "line": 2858 } } ], @@ -20206,7 +20349,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2802 + "line": 2836 } }, { @@ -20231,7 +20374,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2831 + "line": 2865 } } ], @@ -20244,7 +20387,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2829 + "line": 2863 } }, { @@ -20269,7 +20412,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2852 + "line": 2886 } }, { @@ -20297,7 +20440,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2850 + "line": 2884 } }, { @@ -20322,7 +20465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } }, { @@ -20339,7 +20482,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } }, { @@ -20359,14 +20502,14 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } } ], "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2853 + "line": 2887 } }, { @@ -20396,7 +20539,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 2870 + "line": 2904 } } ], @@ -20415,7 +20558,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2867 + "line": 2901 } }, { @@ -20446,7 +20589,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2926 + "line": 2967 } }, { @@ -20466,7 +20609,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2927 + "line": 2968 } }, { @@ -20486,7 +20629,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2928 + "line": 2969 } }, { @@ -20506,7 +20649,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2929 + "line": 2970 } }, { @@ -20526,7 +20669,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2930 + "line": 2971 } }, { @@ -20546,7 +20689,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2931 + "line": 2972 } }, { @@ -20566,7 +20709,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2932 + "line": 2973 } }, { @@ -20589,7 +20732,27 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2933 + "line": 2974 + } + }, + { + "name": "Flags", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiListClipperFlags", + "description": { + "kind": "User", + "name": "ImGuiListClipperFlags" + } + }, + "comments": { + "attached": "// [Internal] Flags, currently not yet well exposed." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 2975 } } ], @@ -20620,7 +20783,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2924 + "line": 2965 } }, { @@ -20645,7 +20808,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3026 + "line": 3068 } } ], @@ -20660,7 +20823,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3024 + "line": 3066 } }, { @@ -20691,7 +20854,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3112 + "line": 3155 } }, { @@ -20711,7 +20874,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3113 + "line": 3156 } }, { @@ -20731,7 +20894,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3114 + "line": 3157 } }, { @@ -20751,7 +20914,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3115 + "line": 3158 } }, { @@ -20771,7 +20934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3116 + "line": 3159 } }, { @@ -20791,7 +20954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3117 + "line": 3160 } } ], @@ -20807,7 +20970,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3109 + "line": 3152 } }, { @@ -20838,7 +21001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3132 + "line": 3175 } }, { @@ -20858,7 +21021,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3133 + "line": 3176 } }, { @@ -20878,7 +21041,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3134 + "line": 3177 } }, { @@ -20898,7 +21061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3135 + "line": 3178 } }, { @@ -20918,7 +21081,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3136 + "line": 3179 } } ], @@ -20930,7 +21093,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3129 + "line": 3172 } }, { @@ -20961,7 +21124,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3158 + "line": 3201 } }, { @@ -20981,7 +21144,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3159 + "line": 3202 } }, { @@ -21004,7 +21167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3160 + "line": 3203 } }, { @@ -21115,7 +21278,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3162 + "line": 3205 } }, { @@ -21135,7 +21298,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3163 + "line": 3206 } } ], @@ -21162,7 +21325,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3155 + "line": 3198 } }, { @@ -21196,7 +21359,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3181 + "line": 3224 } }, { @@ -21321,7 +21484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3178 + "line": 3221 } }, { @@ -21349,7 +21512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3230 + "line": 3273 } }, { @@ -21369,7 +21532,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3231 + "line": 3274 } }, { @@ -21389,7 +21552,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3232 + "line": 3275 } }, { @@ -21409,7 +21572,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3233 + "line": 3276 } }, { @@ -21429,7 +21592,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3234 + "line": 3277 } }, { @@ -21449,7 +21612,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3235 + "line": 3278 } }, { @@ -21472,7 +21635,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3236 + "line": 3279 } }, { @@ -21492,7 +21655,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3237 + "line": 3280 } }, { @@ -21512,7 +21675,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3238 + "line": 3281 } } ], @@ -21528,7 +21691,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3228 + "line": 3271 } }, { @@ -21559,7 +21722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3251 + "line": 3294 } }, { @@ -21582,7 +21745,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3252 + "line": 3295 } }, { @@ -21605,7 +21768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3253 + "line": 3296 } } ], @@ -21618,7 +21781,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3249 + "line": 3292 } }, { @@ -21643,7 +21806,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3266 + "line": 3309 } }, { @@ -21660,7 +21823,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3267 + "line": 3310 } }, { @@ -21677,7 +21840,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3268 + "line": 3311 } } ], @@ -21689,7 +21852,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3264 + "line": 3307 } }, { @@ -21714,7 +21877,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3274 + "line": 3317 } }, { @@ -21731,7 +21894,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3275 + "line": 3318 } } ], @@ -21743,7 +21906,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3272 + "line": 3315 } }, { @@ -21771,7 +21934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3282 + "line": 3325 } }, { @@ -21791,7 +21954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3283 + "line": 3326 } }, { @@ -21811,7 +21974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3284 + "line": 3327 } } ], @@ -21824,7 +21987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3280 + "line": 3323 } }, { @@ -21855,7 +22018,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3338 + "line": 3381 } }, { @@ -21875,7 +22038,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3339 + "line": 3382 } }, { @@ -21895,7 +22058,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3340 + "line": 3383 } }, { @@ -21915,7 +22078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3341 + "line": 3384 } }, { @@ -21938,7 +22101,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3344 + "line": 3387 } }, { @@ -21961,7 +22124,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3345 + "line": 3388 } }, { @@ -21984,7 +22147,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3346 + "line": 3389 } }, { @@ -22007,7 +22170,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3347 + "line": 3390 } }, { @@ -22027,7 +22190,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3348 + "line": 3391 } }, { @@ -22047,7 +22210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3349 + "line": 3392 } }, { @@ -22067,7 +22230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3350 + "line": 3393 } }, { @@ -22087,7 +22250,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3351 + "line": 3394 } }, { @@ -22107,7 +22270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3352 + "line": 3395 } }, { @@ -22127,7 +22290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3353 + "line": 3396 } }, { @@ -22147,7 +22310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3354 + "line": 3397 } }, { @@ -22173,7 +22336,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3355 + "line": 3398 } } ], @@ -22193,7 +22356,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3335 + "line": 3378 } }, { @@ -22221,7 +22384,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3495 + "line": 3538 } }, { @@ -22241,7 +22404,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3496 + "line": 3539 } }, { @@ -22261,7 +22424,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3497 + "line": 3540 } }, { @@ -22281,7 +22444,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3498 + "line": 3541 } }, { @@ -22301,7 +22464,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3499 + "line": 3542 } }, { @@ -22321,7 +22484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3500 + "line": 3543 } }, { @@ -22341,7 +22504,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3501 + "line": 3544 } }, { @@ -22361,7 +22524,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3502 + "line": 3545 } }, { @@ -22384,7 +22547,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3503 + "line": 3546 } }, { @@ -22402,12 +22565,12 @@ } }, "comments": { - "attached": "// List of textures to update. Most of the times the list is shared by all ImDrawData, has only 1 texture and it doesn't need any update. This almost always points to ImGui::GetPlatformIO().Textures[]. May be overriden or set to NULL if you want to manually update textures." + "attached": "// List of textures to update. Most of the times the list is shared by all ImDrawData, has only 1 texture and it doesn't need any update. This almost always points to ImGui::GetPlatformIO().Textures[]. May be overridden or set to NULL if you want to manually update textures." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3504 + "line": 3547 } } ], @@ -22421,7 +22584,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3493 + "line": 3536 } }, { @@ -22449,7 +22612,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3547 + "line": 3590 } }, { @@ -22469,7 +22632,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3547 + "line": 3590 } }, { @@ -22489,7 +22652,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3548 + "line": 3591 } }, { @@ -22509,7 +22672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3548 + "line": 3591 } } ], @@ -22523,7 +22686,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3545 + "line": 3588 } }, { @@ -22554,7 +22717,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3561 + "line": 3604 } }, { @@ -22574,7 +22737,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3562 + "line": 3605 } }, { @@ -22597,7 +22760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3563 + "line": 3606 } }, { @@ -22617,7 +22780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3564 + "line": 3607 } }, { @@ -22637,7 +22800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3565 + "line": 3608 } }, { @@ -22657,7 +22820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3566 + "line": 3609 } }, { @@ -22677,7 +22840,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3567 + "line": 3610 } }, { @@ -22697,7 +22860,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3568 + "line": 3611 } }, { @@ -22720,7 +22883,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3569 + "line": 3612 } }, { @@ -22740,7 +22903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3570 + "line": 3613 } }, { @@ -22760,7 +22923,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3571 + "line": 3614 } }, { @@ -22780,7 +22943,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3572 + "line": 3615 } }, { @@ -22800,7 +22963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3573 + "line": 3616 } }, { @@ -22820,7 +22983,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3574 + "line": 3617 } }, { @@ -22840,7 +23003,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3575 + "line": 3618 } }, { @@ -22860,7 +23023,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3576 + "line": 3619 } } ], @@ -22878,7 +23041,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3558 + "line": 3601 } }, { @@ -22914,7 +23077,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3603 + "line": 3648 } }, { @@ -22937,7 +23100,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3604 + "line": 3649 } }, { @@ -22957,7 +23120,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3605 + "line": 3650 } }, { @@ -22972,12 +23135,12 @@ } }, "comments": { - "attached": "// true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself)." + "attached": "// true // TTF/OTF data ownership taken by the owner ImFontAtlas (will delete memory itself)." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3606 + "line": 3651 } }, { @@ -23000,7 +23163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3609 + "line": 3654 } }, { @@ -23020,7 +23183,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3610 + "line": 3655 } }, { @@ -23040,7 +23203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3611 + "line": 3656 } }, { @@ -23060,7 +23223,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3612 + "line": 3657 } }, { @@ -23080,7 +23243,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3613 + "line": 3658 } }, { @@ -23100,7 +23263,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3614 + "line": 3659 } }, { @@ -23120,7 +23283,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3615 + "line": 3660 } }, { @@ -23146,7 +23309,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3616 + "line": 3661 } }, { @@ -23172,7 +23335,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3617 + "line": 3662 } }, { @@ -23195,7 +23358,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3619 + "line": 3664 } }, { @@ -23215,7 +23378,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3620 + "line": 3665 } }, { @@ -23235,7 +23398,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3621 + "line": 3666 } }, { @@ -23255,7 +23418,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3622 + "line": 3667 } }, { @@ -23275,7 +23438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3623 + "line": 3668 } }, { @@ -23295,7 +23458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3624 + "line": 3669 } }, { @@ -23318,7 +23481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3626 + "line": 3671 } }, { @@ -23338,7 +23501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3627 + "line": 3672 } }, { @@ -23361,7 +23524,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3630 + "line": 3675 } }, { @@ -23384,7 +23547,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3631 + "line": 3676 } }, { @@ -23410,7 +23573,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3632 + "line": 3677 } }, { @@ -23433,7 +23596,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3633 + "line": 3678 } } ], @@ -23445,7 +23608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3600 + "line": 3645 } }, { @@ -23474,7 +23637,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3642 + "line": 3687 } }, { @@ -23495,7 +23658,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3643 + "line": 3688 } }, { @@ -23516,7 +23679,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3644 + "line": 3689 } }, { @@ -23537,7 +23700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3645 + "line": 3690 } }, { @@ -23557,7 +23720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3646 + "line": 3691 } }, { @@ -23577,7 +23740,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23597,7 +23760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23617,7 +23780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23637,7 +23800,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3647 + "line": 3692 } }, { @@ -23657,7 +23820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23677,7 +23840,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23697,7 +23860,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23717,7 +23880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3648 + "line": 3693 } }, { @@ -23737,7 +23900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3649 + "line": 3694 } } ], @@ -23750,7 +23913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3640 + "line": 3685 } }, { @@ -23778,7 +23941,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3658 + "line": 3703 } } ], @@ -23791,7 +23954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3656 + "line": 3701 } }, { @@ -23819,7 +23982,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3680 + "line": 3725 } }, { @@ -23839,7 +24002,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3680 + "line": 3725 } }, { @@ -23859,7 +24022,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3681 + "line": 3726 } }, { @@ -23879,7 +24042,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3681 + "line": 3726 } }, { @@ -23899,7 +24062,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3682 + "line": 3727 } }, { @@ -23919,7 +24082,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3682 + "line": 3727 } } ], @@ -23933,7 +24096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3678 + "line": 3723 } }, { @@ -23964,7 +24127,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3804 + "line": 3849 } }, { @@ -23984,7 +24147,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3805 + "line": 3850 } }, { @@ -24004,7 +24167,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3806 + "line": 3851 } }, { @@ -24024,7 +24187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3807 + "line": 3852 } }, { @@ -24044,7 +24207,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3808 + "line": 3853 } }, { @@ -24064,7 +24227,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3809 + "line": 3854 } }, { @@ -24084,7 +24247,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3810 + "line": 3855 } }, { @@ -24107,7 +24270,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3811 + "line": 3856 } }, { @@ -24133,7 +24296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3817 + "line": 3862 } }, { @@ -24148,7 +24311,7 @@ } }, "comments": { - "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.x" + "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.0." }, "conditionals": [ { @@ -24181,7 +24344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3821 + "line": 3866 } }, { @@ -24204,7 +24367,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3824 + "line": 3869 } }, { @@ -24224,7 +24387,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3825 + "line": 3870 } }, { @@ -24244,7 +24407,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3826 + "line": 3871 } }, { @@ -24264,7 +24427,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3827 + "line": 3872 } }, { @@ -24284,7 +24447,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3828 + "line": 3873 } }, { @@ -24304,7 +24467,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3829 + "line": 3874 } }, { @@ -24324,7 +24487,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3830 + "line": 3875 } }, { @@ -24344,7 +24507,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3831 + "line": 3876 } }, { @@ -24364,7 +24527,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3832 + "line": 3877 } }, { @@ -24389,7 +24552,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3833 + "line": 3878 } }, { @@ -24409,7 +24572,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3834 + "line": 3879 } }, { @@ -24429,7 +24592,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3835 + "line": 3880 } }, { @@ -24449,7 +24612,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3836 + "line": 3881 } }, { @@ -24472,7 +24635,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3837 + "line": 3882 } }, { @@ -24498,7 +24661,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3838 + "line": 3883 } }, { @@ -24524,7 +24687,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3839 + "line": 3884 } }, { @@ -24547,7 +24710,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3840 + "line": 3885 } }, { @@ -24567,7 +24730,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3841 + "line": 3886 } }, { @@ -24587,7 +24750,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3842 + "line": 3887 } }, { @@ -24610,7 +24773,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3843 + "line": 3888 } }, { @@ -24639,7 +24802,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3848 + "line": 3893 } } ], @@ -24669,7 +24832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3715 + "line": 3760 } }, { @@ -24700,7 +24863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3819 + "line": 3864 } }, { @@ -24723,12 +24886,12 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3819 + "line": 3864 } } ], "comments": { - "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.x" + "attached": "// Latest texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.0." }, "conditionals": [ { @@ -24739,7 +24902,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3819 + "line": 3864 } }, { @@ -24770,7 +24933,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3867 + "line": 3912 } }, { @@ -24790,7 +24953,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3868 + "line": 3913 } }, { @@ -24810,7 +24973,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3869 + "line": 3914 } }, { @@ -24830,7 +24993,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3870 + "line": 3915 } }, { @@ -24853,7 +25016,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3873 + "line": 3918 } }, { @@ -24873,7 +25036,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3874 + "line": 3919 } }, { @@ -24893,7 +25056,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3875 + "line": 3920 } }, { @@ -24916,7 +25079,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3878 + "line": 3923 } }, { @@ -24939,7 +25102,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3878 + "line": 3923 } }, { @@ -24960,7 +25123,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3879 + "line": 3924 } }, { @@ -24981,7 +25144,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3880 + "line": 3925 } }, { @@ -25002,7 +25165,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3881 + "line": 3926 } }, { @@ -25023,7 +25186,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3882 + "line": 3927 } }, { @@ -25043,7 +25206,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3883 + "line": 3928 } }, { @@ -25063,11 +25226,11 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3884 + "line": 3929 } }, { - "name": "ContainerFont", + "name": "OwnerFont", "is_array": false, "is_anonymous": false, "type": { @@ -25086,7 +25249,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3885 + "line": 3930 } }, { @@ -25109,7 +25272,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3886 + "line": 3931 } } ], @@ -25122,7 +25285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3864 + "line": 3909 } }, { @@ -25156,11 +25319,11 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3915 + "line": 3960 } }, { - "name": "ContainerAtlas", + "name": "OwnerAtlas", "is_array": false, "is_anonymous": false, "type": { @@ -25179,7 +25342,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3916 + "line": 3961 } }, { @@ -25199,7 +25362,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3917 + "line": 3962 } }, { @@ -25219,7 +25382,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3918 + "line": 3963 } }, { @@ -25243,7 +25406,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3922 + "line": 3967 } }, { @@ -25263,7 +25426,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3923 + "line": 3968 } }, { @@ -25278,12 +25441,12 @@ } }, "comments": { - "attached": "// 16 // in // List of sources. Pointers within ContainerAtlas->Sources[]" + "attached": "// 16 // in // List of sources. Pointers within OwnerAtlas->Sources[]" }, "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3924 + "line": 3969 } }, { @@ -25303,7 +25466,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3925 + "line": 3970 } }, { @@ -25323,7 +25486,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3926 + "line": 3971 } }, { @@ -25348,7 +25511,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3927 + "line": 3972 } }, { @@ -25368,7 +25531,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3928 + "line": 3973 } }, { @@ -25388,7 +25551,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3929 + "line": 3974 } }, { @@ -25414,7 +25577,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3931 + "line": 3976 } } ], @@ -25422,7 +25585,7 @@ "preceding": [ "// Font runtime data and rendering", "// - ImFontAtlas automatically loads a default embedded font for you if you didn't load one manually.", - "// - Since 1.92.X a font may be rendered as any size! Therefore a font doesn't have one specific size.", + "// - Since 1.92.0 a font may be rendered as any size! Therefore a font doesn't have one specific size.", "// - Use 'font->GetFontBaked(size)' to retrieve the ImFontBaked* corresponding to a given size.", "// - If you used g.Font + g.FontSize (which is frequent from the ImGui layer), you can use g.FontBaked as a shortcut, as g.FontBaked == g.Font->GetFontBaked(g.FontSize)." ] @@ -25430,7 +25593,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3912 + "line": 3957 } }, { @@ -25458,7 +25621,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4012 + "line": 4057 } }, { @@ -25478,7 +25641,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4013 + "line": 4058 } }, { @@ -25498,7 +25661,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4014 + "line": 4059 } }, { @@ -25518,7 +25681,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4015 + "line": 4060 } }, { @@ -25538,7 +25701,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4016 + "line": 4061 } }, { @@ -25558,7 +25721,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4017 + "line": 4062 } }, { @@ -25578,7 +25741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4018 + "line": 4063 } }, { @@ -25598,7 +25761,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4019 + "line": 4064 } }, { @@ -25618,7 +25781,30 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4020 + "line": 4065 + } + }, + { + "name": "ParentViewport", + "is_array": false, + "is_anonymous": false, + "type": { + "declaration": "ImGuiViewport*", + "description": { + "kind": "Pointer", + "inner_type": { + "kind": "User", + "name": "ImGuiViewport" + } + } + }, + "comments": { + "attached": "// (Advanced) Direct shortcut to ImGui::FindViewportByID(ParentViewportId). NULL: no parent." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 4066 } }, { @@ -25641,7 +25827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4021 + "line": 4067 } }, { @@ -25671,7 +25857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4028 + "line": 4074 } }, { @@ -25694,7 +25880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4029 + "line": 4075 } }, { @@ -25717,7 +25903,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4030 + "line": 4076 } }, { @@ -25740,7 +25926,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4031 + "line": 4077 } }, { @@ -25760,7 +25946,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4032 + "line": 4078 } }, { @@ -25780,7 +25966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4033 + "line": 4079 } }, { @@ -25800,7 +25986,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4034 + "line": 4080 } }, { @@ -25820,7 +26006,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4035 + "line": 4081 } } ], @@ -25838,7 +26024,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4010 + "line": 4055 } }, { @@ -26051,7 +26237,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4108 + "line": 4154 } }, { @@ -26152,7 +26338,7 @@ "comments": { "preceding": [ "// Optional: Open link/folder/file in OS Shell", - "// (default to use ShellExecuteW() on Windows, system() on Linux/Mac)" + "// (default to use ShellExecuteW() on Windows, system() on Linux/Mac. expected to return false on failure, but some platforms may always return true)" ] }, "is_internal": false, @@ -26177,7 +26363,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4113 + "line": 4159 } }, { @@ -26324,7 +26510,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4118 + "line": 4164 } }, { @@ -26348,7 +26534,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4123 + "line": 4169 } }, { @@ -26370,7 +26556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4130 + "line": 4176 } }, { @@ -26387,7 +26573,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4131 + "line": 4177 } }, { @@ -26412,7 +26598,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4134 + "line": 4180 } }, { @@ -28498,7 +28684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4184 + "line": 4230 } }, { @@ -28522,7 +28708,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4192 + "line": 4238 } }, { @@ -28546,7 +28732,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4196 + "line": 4242 } } ], @@ -28558,7 +28744,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4096 + "line": 4142 } }, { @@ -28586,7 +28772,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4203 + "line": 4256 } }, { @@ -28606,7 +28792,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4203 + "line": 4256 } }, { @@ -28626,7 +28812,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4204 + "line": 4257 } }, { @@ -28646,7 +28832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4204 + "line": 4257 } }, { @@ -28666,7 +28852,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4205 + "line": 4258 } }, { @@ -28689,7 +28875,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4206 + "line": 4259 } } ], @@ -28702,7 +28888,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4201 + "line": 4254 } }, { @@ -28730,7 +28916,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4213 + "line": 4266 } }, { @@ -28750,7 +28936,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4214 + "line": 4267 } }, { @@ -28770,7 +28956,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4215 + "line": 4268 } }, { @@ -28790,7 +28976,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4216 + "line": 4269 } }, { @@ -28810,7 +28996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4217 + "line": 4270 } } ], @@ -28822,7 +29008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4211 + "line": 4264 } } ], @@ -28872,7 +29058,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 370 + "line": 378 } }, { @@ -28924,7 +29110,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 389 + "line": 397 } }, { @@ -28968,7 +29154,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 390 + "line": 398 } }, { @@ -28994,7 +29180,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 391 + "line": 399 } }, { @@ -29034,7 +29220,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 392 + "line": 400 } }, { @@ -29068,7 +29254,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 395 + "line": 403 } }, { @@ -29099,7 +29285,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 396 + "line": 404 } }, { @@ -29130,7 +29316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 397 + "line": 405 } }, { @@ -29156,7 +29342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 398 + "line": 406 } }, { @@ -29182,7 +29368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 399 + "line": 407 } }, { @@ -29208,7 +29394,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 400 + "line": 408 } }, { @@ -29237,7 +29423,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 401 + "line": 409 } }, { @@ -29284,7 +29470,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 404 + "line": 412 } }, { @@ -29328,7 +29514,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 405 + "line": 413 } }, { @@ -29372,7 +29558,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 406 + "line": 414 } }, { @@ -29398,7 +29584,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 407 + "line": 415 } }, { @@ -29442,7 +29628,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 407 + "line": 415 } }, { @@ -29486,7 +29672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 408 + "line": 416 } }, { @@ -29530,7 +29716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 409 + "line": 417 } }, { @@ -29576,7 +29762,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 410 + "line": 418 } }, { @@ -29622,7 +29808,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 411 + "line": 419 } }, { @@ -29648,7 +29834,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 412 + "line": 420 } }, { @@ -29680,7 +29866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 413 + "line": 421 } }, { @@ -29727,7 +29913,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 416 + "line": 424 } }, { @@ -29771,7 +29957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 417 + "line": 425 } }, { @@ -29815,7 +30001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 418 + "line": 426 } }, { @@ -29905,7 +30091,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 432 + "line": 440 } }, { @@ -29928,7 +30114,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 433 + "line": 441 } }, { @@ -30035,7 +30221,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 453 + "line": 461 } }, { @@ -30114,7 +30300,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 454 + "line": 462 } }, { @@ -30137,7 +30323,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 455 + "line": 463 } }, { @@ -30166,7 +30352,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 459 + "line": 467 } }, { @@ -30189,7 +30375,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 460 + "line": 468 } }, { @@ -30230,7 +30416,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 461 + "line": 469 } }, { @@ -30271,7 +30457,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 462 + "line": 470 } }, { @@ -30300,7 +30486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 463 + "line": 471 } }, { @@ -30326,7 +30512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 464 + "line": 472 } }, { @@ -30352,7 +30538,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 465 + "line": 473 } }, { @@ -30378,7 +30564,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 466 + "line": 474 } }, { @@ -30404,7 +30590,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 467 + "line": 475 } }, { @@ -30430,7 +30616,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 468 + "line": 476 } }, { @@ -30459,7 +30645,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 469 + "line": 477 } }, { @@ -30517,7 +30703,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 473 + "line": 481 } }, { @@ -30585,7 +30771,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 473 + "line": 481 } }, { @@ -30639,7 +30825,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 474 + "line": 482 } }, { @@ -30723,7 +30909,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 475 + "line": 483 } }, { @@ -30763,7 +30949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 476 + "line": 484 } }, { @@ -30817,7 +31003,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 477 + "line": 485 } }, { @@ -30843,7 +31029,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 478 + "line": 486 } }, { @@ -30883,7 +31069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 479 + "line": 487 } }, { @@ -30923,7 +31109,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 480 + "line": 488 } }, { @@ -30963,7 +31149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 481 + "line": 489 } }, { @@ -31017,7 +31203,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 482 + "line": 490 } }, { @@ -31071,7 +31257,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 483 + "line": 491 } }, { @@ -31125,7 +31311,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 484 + "line": 492 } }, { @@ -31151,7 +31337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 485 + "line": 493 } }, { @@ -31224,7 +31410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 486 + "line": 494 } }, { @@ -31297,7 +31483,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 487 + "line": 495 } }, { @@ -31370,7 +31556,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 488 + "line": 496 } }, { @@ -31416,7 +31602,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 489 + "line": 497 } }, { @@ -31447,7 +31633,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 494 + "line": 502 } }, { @@ -31473,7 +31659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 495 + "line": 503 } }, { @@ -31513,7 +31699,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 496 + "line": 504 } }, { @@ -31553,7 +31739,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 497 + "line": 505 } }, { @@ -31579,7 +31765,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 498 + "line": 506 } }, { @@ -31605,7 +31791,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 499 + "line": 507 } }, { @@ -31646,7 +31832,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 500 + "line": 508 } }, { @@ -31687,7 +31873,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 501 + "line": 509 } }, { @@ -31741,7 +31927,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 502 + "line": 510 } }, { @@ -31795,7 +31981,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 503 + "line": 511 } }, { @@ -31869,7 +32055,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 521 + "line": 529 } }, { @@ -31892,7 +32078,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 522 + "line": 530 } }, { @@ -31921,7 +32107,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 523 + "line": 531 } }, { @@ -31947,7 +32133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 524 + "line": 532 } }, { @@ -31976,7 +32162,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 525 + "line": 533 } }, { @@ -32032,7 +32218,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 528 + "line": 536 } }, { @@ -32082,7 +32268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 529 + "line": 537 } }, { @@ -32108,7 +32294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 530 + "line": 538 } }, { @@ -32146,7 +32332,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 530 + "line": 538 } }, { @@ -32199,7 +32385,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 531 + "line": 539 } }, { @@ -32252,7 +32438,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 532 + "line": 540 } }, { @@ -32305,7 +32491,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 533 + "line": 541 } }, { @@ -32358,7 +32544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 534 + "line": 542 } }, { @@ -32384,7 +32570,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 535 + "line": 543 } }, { @@ -32422,7 +32608,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 535 + "line": 543 } }, { @@ -32475,7 +32661,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 536 + "line": 544 } }, { @@ -32498,7 +32684,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 537 + "line": 545 } }, { @@ -32541,7 +32727,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 540 + "line": 548 } }, { @@ -32564,7 +32750,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 541 + "line": 549 } }, { @@ -32604,7 +32790,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 542 + "line": 550 } }, { @@ -32630,7 +32816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 543 + "line": 551 } }, { @@ -32671,7 +32857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 544 + "line": 552 } }, { @@ -32694,7 +32880,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 545 + "line": 553 } }, { @@ -32724,7 +32910,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 549 + "line": 557 } }, { @@ -32764,7 +32950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 550 + "line": 558 } }, { @@ -32818,7 +33004,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 550 + "line": 558 } }, { @@ -32858,7 +33044,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 551 + "line": 559 } }, { @@ -32898,7 +33084,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 552 + "line": 560 } }, { @@ -32952,7 +33138,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 552 + "line": 560 } }, { @@ -33000,7 +33186,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 553 + "line": 561 } }, { @@ -33038,7 +33224,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 565 + "line": 573 } }, { @@ -33078,7 +33264,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 566 + "line": 574 } }, { @@ -33104,7 +33290,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 567 + "line": 575 } }, { @@ -33130,7 +33316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 568 + "line": 576 } }, { @@ -33156,7 +33342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 569 + "line": 577 } }, { @@ -33182,7 +33368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 570 + "line": 578 } }, { @@ -33222,7 +33408,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 571 + "line": 579 } }, { @@ -33262,7 +33448,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 572 + "line": 580 } }, { @@ -33302,7 +33488,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 573 + "line": 581 } }, { @@ -33328,7 +33514,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 574 + "line": 582 } }, { @@ -33357,7 +33543,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 577 + "line": 585 } }, { @@ -33383,7 +33569,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 578 + "line": 586 } }, { @@ -33438,7 +33624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 578 + "line": 586 } }, { @@ -33464,7 +33650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 579 + "line": 587 } }, { @@ -33490,7 +33676,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 580 + "line": 588 } }, { @@ -33530,7 +33716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 581 + "line": 589 } }, { @@ -33556,7 +33742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 582 + "line": 590 } }, { @@ -33597,7 +33783,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 582 + "line": 590 } }, { @@ -33623,7 +33809,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 583 + "line": 591 } }, { @@ -33664,7 +33850,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 583 + "line": 591 } }, { @@ -33690,7 +33876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 584 + "line": 592 } }, { @@ -33716,7 +33902,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 585 + "line": 593 } }, { @@ -33742,7 +33928,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 586 + "line": 594 } }, { @@ -33768,7 +33954,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 587 + "line": 595 } }, { @@ -33794,7 +33980,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 588 + "line": 596 } }, { @@ -33820,7 +34006,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 589 + "line": 597 } }, { @@ -33846,7 +34032,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 590 + "line": 598 } }, { @@ -33905,7 +34091,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 603 + "line": 611 } }, { @@ -33970,7 +34156,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 604 + "line": 612 } }, { @@ -34016,7 +34202,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 605 + "line": 613 } }, { @@ -34056,7 +34242,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 606 + "line": 614 } }, { @@ -34082,7 +34268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 607 + "line": 615 } }, { @@ -34128,7 +34314,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 608 + "line": 616 } }, { @@ -34190,7 +34376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 609 + "line": 617 } }, { @@ -34233,7 +34419,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 610 + "line": 618 } }, { @@ -34270,7 +34456,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 611 + "line": 619 } }, { @@ -34319,7 +34505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 614 + "line": 622 } }, { @@ -34385,7 +34571,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 614 + "line": 622 } }, { @@ -34437,7 +34623,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 615 + "line": 623 } }, { @@ -34494,7 +34680,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 616 + "line": 624 } }, { @@ -34559,7 +34745,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 617 + "line": 625 } }, { @@ -34629,7 +34815,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 618 + "line": 626 } }, { @@ -34681,7 +34867,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 619 + "line": 627 } }, { @@ -34738,7 +34924,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 620 + "line": 628 } }, { @@ -34790,7 +34976,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 621 + "line": 629 } }, { @@ -34847,7 +35033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 622 + "line": 630 } }, { @@ -34918,7 +35104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 623 + "line": 631 } }, { @@ -34994,7 +35180,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 624 + "line": 632 } }, { @@ -35046,7 +35232,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 625 + "line": 633 } }, { @@ -35103,7 +35289,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 626 + "line": 634 } }, { @@ -35149,7 +35335,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 627 + "line": 635 } }, { @@ -35200,7 +35386,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 632 + "line": 640 } }, { @@ -35260,7 +35446,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 632 + "line": 640 } }, { @@ -35306,7 +35492,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 633 + "line": 641 } }, { @@ -35379,7 +35565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 634 + "line": 642 } }, { @@ -35438,7 +35624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 635 + "line": 643 } }, { @@ -35497,7 +35683,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 636 + "line": 644 } }, { @@ -35569,7 +35755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 637 + "line": 645 } }, { @@ -35641,7 +35827,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 638 + "line": 646 } }, { @@ -35700,7 +35886,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 639 + "line": 647 } }, { @@ -35775,7 +35961,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 640 + "line": 648 } }, { @@ -35846,7 +36032,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 641 + "line": 649 } }, { @@ -35872,7 +36058,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 642 + "line": 650 } }, { @@ -35918,7 +36104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 643 + "line": 651 } }, { @@ -35964,7 +36150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 644 + "line": 652 } }, { @@ -36030,7 +36216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 644 + "line": 652 } }, { @@ -36091,7 +36277,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 652 + "line": 660 } }, { @@ -36169,7 +36355,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 652 + "line": 660 } }, { @@ -36222,7 +36408,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 653 + "line": 661 } }, { @@ -36328,7 +36514,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 653 + "line": 661 } }, { @@ -36400,7 +36586,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 654 + "line": 662 } }, { @@ -36525,7 +36711,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 654 + "line": 662 } }, { @@ -36608,7 +36794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 659 + "line": 667 } }, { @@ -36634,7 +36820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 660 + "line": 668 } }, { @@ -36735,7 +36921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 661 + "line": 669 } }, { @@ -36847,7 +37033,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 661 + "line": 669 } }, { @@ -36928,7 +37114,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 662 + "line": 670 } }, { @@ -37023,7 +37209,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 662 + "line": 670 } }, { @@ -37211,7 +37397,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 663 + "line": 671 } }, { @@ -37410,7 +37596,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 663 + "line": 671 } }, { @@ -37469,13 +37655,13 @@ "comments": { "preceding": [ "// Widgets: Drag Sliders", - "// - CTRL+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", + "// - Ctrl+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", "// - For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every function, note that a 'float v[X]' function argument is the same as 'float* v',", "// the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x", "// - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. \"%.3f\" -> 1.234; \"%5.2f secs\" -> 01.23 secs; \"Biscuit: %.0f\" -> Biscuit: 1; etc.", "// - Format string may also be set to NULL or use the default format (\"%f\" or \"%d\").", "// - Speed are per-pixel of mouse movement (v_speed=0.2f: mouse needs to move by 5 pixels to increase value by 1). For keyboard/gamepad navigation, minimum speed is Max(v_speed, minimum_step_at_given_precision).", - "// - Use v_min < v_max to clamp edits to given limits. Note that CTRL+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used.", + "// - Use v_min < v_max to clamp edits to given limits. Note that Ctrl+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used.", "// - Use v_max = FLT_MAX / INT_MAX etc to avoid clamping to a maximum, same with v_min = -FLT_MAX / INT_MIN to avoid clamping to a minimum.", "// - We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them.", "// - Legacy: Pre-1.78 there are DragXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument.", @@ -37486,7 +37672,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 677 + "line": 685 } }, { @@ -37624,7 +37810,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 677 + "line": 685 } }, { @@ -37688,7 +37874,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 678 + "line": 686 } }, { @@ -37825,7 +38011,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 678 + "line": 686 } }, { @@ -37889,7 +38075,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 679 + "line": 687 } }, { @@ -38026,7 +38212,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 679 + "line": 687 } }, { @@ -38090,7 +38276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 680 + "line": 688 } }, { @@ -38227,7 +38413,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 680 + "line": 688 } }, { @@ -38305,7 +38491,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 681 + "line": 689 } }, { @@ -38476,7 +38662,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 681 + "line": 689 } }, { @@ -38538,7 +38724,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 682 + "line": 690 } }, { @@ -38676,7 +38862,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 682 + "line": 690 } }, { @@ -38740,7 +38926,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 683 + "line": 691 } }, { @@ -38877,7 +39063,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 683 + "line": 691 } }, { @@ -38941,7 +39127,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 684 + "line": 692 } }, { @@ -39078,7 +39264,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 684 + "line": 692 } }, { @@ -39142,7 +39328,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 685 + "line": 693 } }, { @@ -39279,7 +39465,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 685 + "line": 693 } }, { @@ -39357,7 +39543,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 686 + "line": 694 } }, { @@ -39528,7 +39714,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 686 + "line": 694 } }, { @@ -39603,7 +39789,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 687 + "line": 695 } }, { @@ -39763,7 +39949,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 687 + "line": 695 } }, { @@ -39851,7 +40037,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 688 + "line": 696 } }, { @@ -40024,7 +40210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 688 + "line": 696 } }, { @@ -40109,7 +40295,7 @@ "comments": { "preceding": [ "// Widgets: Regular Sliders", - "// - CTRL+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", + "// - Ctrl+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp.", "// - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. \"%.3f\" -> 1.234; \"%5.2f secs\" -> 01.23 secs; \"Biscuit: %.0f\" -> Biscuit: 1; etc.", "// - Format string may also be set to NULL or use the default format (\"%f\" or \"%d\").", "// - Legacy: Pre-1.78 there are SliderXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument.", @@ -40120,7 +40306,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 696 + "line": 704 } }, { @@ -40242,7 +40428,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 696 + "line": 704 } }, { @@ -40332,7 +40518,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 697 + "line": 705 } }, { @@ -40453,7 +40639,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 697 + "line": 705 } }, { @@ -40543,7 +40729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 698 + "line": 706 } }, { @@ -40664,7 +40850,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 698 + "line": 706 } }, { @@ -40754,7 +40940,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 699 + "line": 707 } }, { @@ -40875,7 +41061,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 699 + "line": 707 } }, { @@ -40937,7 +41123,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 700 + "line": 708 } }, { @@ -41058,7 +41244,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 700 + "line": 708 } }, { @@ -41146,7 +41332,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 701 + "line": 709 } }, { @@ -41265,7 +41451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 701 + "line": 709 } }, { @@ -41355,7 +41541,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 702 + "line": 710 } }, { @@ -41476,7 +41662,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 702 + "line": 710 } }, { @@ -41566,7 +41752,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 703 + "line": 711 } }, { @@ -41687,7 +41873,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 703 + "line": 711 } }, { @@ -41777,7 +41963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 704 + "line": 712 } }, { @@ -41898,7 +42084,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 704 + "line": 712 } }, { @@ -42011,7 +42197,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 705 + "line": 713 } }, { @@ -42155,7 +42341,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 705 + "line": 713 } }, { @@ -42281,7 +42467,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 706 + "line": 714 } }, { @@ -42438,7 +42624,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 706 + "line": 714 } }, { @@ -42539,7 +42725,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 707 + "line": 715 } }, { @@ -42671,7 +42857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 707 + "line": 715 } }, { @@ -42772,7 +42958,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 708 + "line": 716 } }, { @@ -42904,7 +43090,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 708 + "line": 716 } }, { @@ -43030,7 +43216,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 709 + "line": 717 } }, { @@ -43187,7 +43373,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 709 + "line": 717 } }, { @@ -43273,7 +43459,7 @@ "comments": { "preceding": [ "// Widgets: Input with Keyboard", - "// - If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp.", + "// - If you want to use InputText() with std::string or any custom dynamic string type, use the wrapper in misc/cpp/imgui_stdlib.h/.cpp!", "// - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc." ], "attached": "// Implied callback = NULL, user_data = NULL" @@ -43281,7 +43467,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 714 + "line": 722 } }, { @@ -43398,7 +43584,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 714 + "line": 722 } }, { @@ -43473,7 +43659,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 715 + "line": 723 } }, { @@ -43604,7 +43790,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 715 + "line": 723 } }, { @@ -43712,7 +43898,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 716 + "line": 724 } }, { @@ -43848,7 +44034,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 716 + "line": 724 } }, { @@ -43910,7 +44096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 717 + "line": 725 } }, { @@ -44031,7 +44217,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 717 + "line": 725 } }, { @@ -44095,7 +44281,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 718 + "line": 726 } }, { @@ -44190,7 +44376,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 718 + "line": 726 } }, { @@ -44254,7 +44440,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 719 + "line": 727 } }, { @@ -44349,7 +44535,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 719 + "line": 727 } }, { @@ -44413,7 +44599,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 720 + "line": 728 } }, { @@ -44508,7 +44694,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 720 + "line": 728 } }, { @@ -44570,7 +44756,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 721 + "line": 729 } }, { @@ -44671,7 +44857,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 721 + "line": 729 } }, { @@ -44746,7 +44932,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 722 + "line": 730 } }, { @@ -44821,7 +45007,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 723 + "line": 731 } }, { @@ -44896,7 +45082,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 724 + "line": 732 } }, { @@ -44958,7 +45144,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 725 + "line": 733 } }, { @@ -45079,7 +45265,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 725 + "line": 733 } }, { @@ -45154,7 +45340,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 726 + "line": 734 } }, { @@ -45300,7 +45486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 726 + "line": 734 } }, { @@ -45388,7 +45574,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 727 + "line": 735 } }, { @@ -45547,7 +45733,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 727 + "line": 735 } }, { @@ -45629,7 +45815,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 732 + "line": 740 } }, { @@ -45704,7 +45890,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 733 + "line": 741 } }, { @@ -45779,7 +45965,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 734 + "line": 742 } }, { @@ -45874,7 +46060,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 735 + "line": 743 } }, { @@ -45947,7 +46133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 736 + "line": 744 } }, { @@ -46034,7 +46220,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 736 + "line": 744 } }, { @@ -46074,7 +46260,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 737 + "line": 745 } }, { @@ -46123,7 +46309,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 741 + "line": 749 } }, { @@ -46189,12 +46375,12 @@ "is_unformatted_helper": false, "is_static": false, "comments": { - "attached": "// helper variation to easily decorelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet()." + "attached": "// helper variation to easily decorrelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet()." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 742 + "line": 750 } }, { @@ -46265,7 +46451,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 743 + "line": 751 } }, { @@ -46341,7 +46527,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 744 + "line": 752 } }, { @@ -46417,7 +46603,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 745 + "line": 753 } }, { @@ -46474,7 +46660,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 746 + "line": 754 } }, { @@ -46555,7 +46741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 747 + "line": 755 } }, { @@ -46636,7 +46822,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 748 + "line": 756 } }, { @@ -46725,7 +46911,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 749 + "line": 757 } }, { @@ -46814,7 +47000,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 750 + "line": 758 } }, { @@ -46860,7 +47046,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 751 + "line": 759 } }, { @@ -46906,7 +47092,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 752 + "line": 760 } }, { @@ -46932,7 +47118,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 753 + "line": 761 } }, { @@ -46958,7 +47144,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 754 + "line": 762 } }, { @@ -47018,7 +47204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 755 + "line": 763 } }, { @@ -47094,7 +47280,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 756 + "line": 764 } }, { @@ -47148,7 +47334,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 757 + "line": 765 } }, { @@ -47188,7 +47374,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 758 + "line": 766 } }, { @@ -47239,7 +47425,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 763 + "line": 771 } }, { @@ -47327,7 +47513,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 763 + "line": 771 } }, { @@ -47403,7 +47589,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 764 + "line": 772 } }, { @@ -47493,7 +47679,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 764 + "line": 772 } }, { @@ -47533,7 +47719,7 @@ "comments": { "preceding": [ "// Multi-selection system for Selectable(), Checkbox(), TreeNode() functions [BETA]", - "// - This enables standard multi-selection/range-selection idioms (CTRL+Mouse/Keyboard, SHIFT+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used.", + "// - This enables standard multi-selection/range-selection idioms (Ctrl+Mouse/Keyboard, Shift+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used.", "// - ImGuiSelectionUserData is often used to store your item index within the current view (but may store something else).", "// - Read comments near ImGuiMultiSelectIO for instructions/details and see 'Demo->Widgets->Selection State & Multi-Select' for demo.", "// - TreeNode() is technically supported but... using this correctly is more complicated. You need some sort of linear/random access to your tree,", @@ -47545,7 +47731,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 773 + "line": 781 } }, { @@ -47613,7 +47799,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 773 + "line": 781 } }, { @@ -47639,7 +47825,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 774 + "line": 782 } }, { @@ -47676,7 +47862,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 775 + "line": 783 } }, { @@ -47702,7 +47888,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 776 + "line": 784 } }, { @@ -47771,7 +47957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 785 + "line": 793 } }, { @@ -47797,7 +47983,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 786 + "line": 794 } }, { @@ -47909,7 +48095,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 787 + "line": 795 } }, { @@ -48097,7 +48283,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 788 + "line": 796 } }, { @@ -48296,7 +48482,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 788 + "line": 796 } }, { @@ -48378,7 +48564,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 792 + "line": 800 } }, { @@ -48543,7 +48729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 792 + "line": 800 } }, { @@ -48703,7 +48889,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 793 + "line": 801 } }, { @@ -48936,7 +49122,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 793 + "line": 801 } }, { @@ -49014,7 +49200,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 794 + "line": 802 } }, { @@ -49179,7 +49365,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 794 + "line": 802 } }, { @@ -49339,7 +49525,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 795 + "line": 803 } }, { @@ -49572,7 +49758,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 795 + "line": 803 } }, { @@ -49605,7 +49791,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 809 + "line": 817 } }, { @@ -49631,7 +49817,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 810 + "line": 818 } }, { @@ -49657,7 +49843,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 811 + "line": 819 } }, { @@ -49683,7 +49869,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 812 + "line": 820 } }, { @@ -49729,7 +49915,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 813 + "line": 821 } }, { @@ -49789,7 +49975,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 813 + "line": 821 } }, { @@ -49815,7 +50001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 814 + "line": 822 } }, { @@ -49861,7 +50047,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 815 + "line": 823 } }, { @@ -49955,7 +50141,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 815 + "line": 823 } }, { @@ -50050,7 +50236,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 816 + "line": 824 } }, { @@ -50082,7 +50268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 822 + "line": 830 } }, { @@ -50108,7 +50294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 823 + "line": 831 } }, { @@ -50160,7 +50346,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 824 + "line": 832 } }, { @@ -50217,7 +50403,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 825 + "line": 833 } }, { @@ -50249,7 +50435,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 831 + "line": 839 } }, { @@ -50301,7 +50487,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 832 + "line": 840 } }, { @@ -50358,7 +50544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 833 + "line": 841 } }, { @@ -50430,7 +50616,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 845 + "line": 853 } }, { @@ -50507,7 +50693,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 846 + "line": 854 } }, { @@ -50533,7 +50719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 847 + "line": 855 } }, { @@ -50603,7 +50789,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 857 + "line": 865 } }, { @@ -50657,7 +50843,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 858 + "line": 866 } }, { @@ -50718,7 +50904,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 859 + "line": 867 } }, { @@ -50744,7 +50930,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 860 + "line": 868 } }, { @@ -50777,7 +50963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 867 + "line": 875 } }, { @@ -50838,7 +51024,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 867 + "line": 875 } }, { @@ -50864,7 +51050,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 868 + "line": 876 } }, { @@ -50925,7 +51111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 868 + "line": 876 } }, { @@ -50951,7 +51137,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 869 + "line": 877 } }, { @@ -51012,7 +51198,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 869 + "line": 877 } }, { @@ -51078,7 +51264,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 875 + "line": 883 } }, { @@ -51174,7 +51360,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 898 + "line": 906 } }, { @@ -51272,7 +51458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 898 + "line": 906 } }, { @@ -51298,7 +51484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 899 + "line": 907 } }, { @@ -51324,7 +51510,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 900 + "line": 908 } }, { @@ -51379,7 +51565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 900 + "line": 908 } }, { @@ -51405,7 +51591,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 901 + "line": 909 } }, { @@ -51445,7 +51631,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 902 + "line": 910 } }, { @@ -51515,7 +51701,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 912 + "line": 920 } }, { @@ -51600,7 +51786,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 912 + "line": 920 } }, { @@ -51653,7 +51839,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 913 + "line": 921 } }, { @@ -51699,7 +51885,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 914 + "line": 922 } }, { @@ -51725,7 +51911,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 915 + "line": 923 } }, { @@ -51751,7 +51937,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 916 + "line": 924 } }, { @@ -51788,7 +51974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 924 + "line": 932 } }, { @@ -51814,7 +52000,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 925 + "line": 933 } }, { @@ -51840,7 +52026,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 926 + "line": 934 } }, { @@ -51866,7 +52052,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 927 + "line": 935 } }, { @@ -51913,7 +52099,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 928 + "line": 936 } }, { @@ -51954,7 +52140,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 929 + "line": 937 } }, { @@ -52007,7 +52193,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 930 + "line": 938 } }, { @@ -52033,7 +52219,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 931 + "line": 939 } }, { @@ -52100,7 +52286,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 932 + "line": 940 } }, { @@ -52130,7 +52316,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 936 + "line": 944 } }, { @@ -52202,7 +52388,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 936 + "line": 944 } }, { @@ -52228,7 +52414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 937 + "line": 945 } }, { @@ -52254,7 +52440,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 938 + "line": 946 } }, { @@ -52295,7 +52481,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 939 + "line": 947 } }, { @@ -52348,7 +52534,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 940 + "line": 948 } }, { @@ -52389,7 +52575,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 941 + "line": 949 } }, { @@ -52442,7 +52628,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 942 + "line": 950 } }, { @@ -52465,7 +52651,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 943 + "line": 951 } }, { @@ -52529,7 +52715,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 947 + "line": 955 } }, { @@ -52555,7 +52741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 948 + "line": 956 } }, { @@ -52632,7 +52818,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 949 + "line": 957 } }, { @@ -52658,7 +52844,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 950 + "line": 958 } }, { @@ -52718,7 +52904,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 951 + "line": 959 } }, { @@ -52764,7 +52950,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 952 + "line": 960 } }, { @@ -52801,25 +52987,31 @@ "comments": { "preceding": [ "// Docking", - "// [BETA API] Enable with io.ConfigFlags |= ImGuiConfigFlags_DockingEnable.", - "// Note: You can use most Docking facilities without calling any API. You DO NOT need to call DockSpace() to use Docking!", - "// - Drag from window title bar or their tab to dock/undock. Hold SHIFT to disable docking.", - "// - Drag from window menu button (upper-left button) to undock an entire node (all windows).", - "// - When io.ConfigDockingWithShift == true, you instead need to hold SHIFT to enable docking.", - "// About dockspaces:", - "// - Use DockSpaceOverViewport() to create a window covering the screen or a specific viewport + a dockspace inside it.", - "// This is often used with ImGuiDockNodeFlags_PassthruCentralNode to make it transparent.", - "// - Use DockSpace() to create an explicit dock node _within_ an existing window. See Docking demo for details.", - "// - Important: Dockspaces need to be submitted _before_ any window they can host. Submit it early in your frame!", - "// - Important: Dockspaces need to be kept alive if hidden, otherwise windows docked into it will be undocked.", - "// e.g. if you have multiple tabs with a dockspace inside each tab: submit the non-visible dockspaces with ImGuiDockNodeFlags_KeepAliveOnly." + "// - Read https://github.com/ocornut/imgui/wiki/Docking for details.", + "// - Enable with io.ConfigFlags |= ImGuiConfigFlags_DockingEnable.", + "// - You can use most Docking facilities without calling any API. You don't necessarily need to call a DockSpaceXXX function to use Docking!", + "// - Drag from window title bar or their tab to dock/undock. Hold SHIFT to disable docking.", + "// - Drag from window menu button (upper-left button) to undock an entire node (all windows).", + "// - When io.ConfigDockingWithShift == true, you instead need to hold SHIFT to enable docking.", + "// - Dockspaces:", + "// - If you want to dock windows into the edge of your screen, most application can simply call DockSpaceOverViewport():", + "// e.g. ImGui::NewFrame(); then ImGui::DockSpaceOverViewport(); // Create a dockspace in main viewport.", + "// or: ImGui::NewFrame(); then ImGui::DockSpaceOverViewport(0, nullptr, ImGuiDockNodeFlags_PassthruCentralNode); // Create a dockspace in main viewport, where central node is transparent.", + "// - A dockspace is an explicit dock node within an existing window.", + "// - DockSpaceOverViewport() basically creates an invisible window covering a viewport, and submit a DockSpace() into it.", + "// - IMPORTANT: Dockspaces need to be submitted _before_ any window they can host. Submit them early in your frame!", + "// - IMPORTANT: Dockspaces need to be kept alive if hidden, otherwise windows docked into it will be undocked.", + "// If you have e.g. multiple tabs with a dockspace inside each tab: submit the non-visible dockspaces with ImGuiDockNodeFlags_KeepAliveOnly.", + "// - Programmatic docking:", + "// - There is no public API yet other than the very limited SetNextWindowDockID() function. Sorry for that!", + "// - Read https://github.com/ocornut/imgui/wiki/Docking for examples of how to use current internal API." ], "attached": "// Implied size = ImVec2(0, 0), flags = 0, window_class = NULL" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 967 + "line": 981 } }, { @@ -52904,7 +53096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 967 + "line": 981 } }, { @@ -52930,7 +53122,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 968 + "line": 982 } }, { @@ -53022,7 +53214,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 968 + "line": 982 } }, { @@ -53076,7 +53268,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 969 + "line": 983 } }, { @@ -53122,7 +53314,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 970 + "line": 984 } }, { @@ -53145,7 +53337,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 971 + "line": 985 } }, { @@ -53171,7 +53363,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 972 + "line": 986 } }, { @@ -53216,7 +53408,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 976 + "line": 990 } }, { @@ -53277,7 +53469,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 977 + "line": 991 } }, { @@ -53318,7 +53510,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 978 + "line": 992 } }, { @@ -53344,7 +53536,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 979 + "line": 993 } }, { @@ -53370,7 +53562,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 980 + "line": 994 } }, { @@ -53422,7 +53614,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 981 + "line": 995 } }, { @@ -53479,7 +53671,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 982 + "line": 996 } }, { @@ -53527,7 +53719,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 989 + "line": 1003 } }, { @@ -53619,7 +53811,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 990 + "line": 1004 } }, { @@ -53645,7 +53837,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 991 + "line": 1005 } }, { @@ -53671,7 +53863,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 992 + "line": 1006 } }, { @@ -53737,7 +53929,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 993 + "line": 1007 } }, { @@ -53763,7 +53955,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 994 + "line": 1008 } }, { @@ -53795,7 +53987,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 995 + "line": 1009 } }, { @@ -53835,14 +54027,14 @@ "// Disabling [BETA API]", "// - Disable all user interactions and dim items visuals (applying style.DisabledAlpha over current colors)", "// - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled)", - "// - Tooltips windows by exception are opted out of disabling.", + "// - Tooltips windows are automatically opted out of disabling. Note that IsItemHovered() by default returns false on disabled items, unless using ImGuiHoveredFlags_AllowWhenDisabled. ", "// - BeginDisabled(false)/EndDisabled() essentially does nothing but is provided to facilitate use of boolean expressions (as a micro-optimization: if you have tens of thousands of BeginDisabled(false)/EndDisabled() pairs, you might want to reformulate your code to avoid making those calls)" ] }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1002 + "line": 1016 } }, { @@ -53865,7 +54057,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1003 + "line": 1017 } }, { @@ -53934,7 +54126,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1007 + "line": 1021 } }, { @@ -53957,7 +54149,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1008 + "line": 1022 } }, { @@ -53986,7 +54178,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1011 + "line": 1025 } }, { @@ -54012,7 +54204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1012 + "line": 1026 } }, { @@ -54053,7 +54245,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1012 + "line": 1026 } }, { @@ -54096,7 +54288,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1015 + "line": 1029 } }, { @@ -54125,7 +54317,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1018 + "line": 1032 } }, { @@ -54171,7 +54363,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1023 + "line": 1037 } }, { @@ -54197,7 +54389,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1024 + "line": 1038 } }, { @@ -54223,7 +54415,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1025 + "line": 1039 } }, { @@ -54249,7 +54441,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1026 + "line": 1040 } }, { @@ -54290,7 +54482,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1026 + "line": 1040 } }, { @@ -54316,7 +54508,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1027 + "line": 1041 } }, { @@ -54342,7 +54534,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1028 + "line": 1042 } }, { @@ -54368,7 +54560,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1029 + "line": 1043 } }, { @@ -54394,7 +54586,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1030 + "line": 1044 } }, { @@ -54420,7 +54612,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1031 + "line": 1045 } }, { @@ -54446,7 +54638,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1032 + "line": 1046 } }, { @@ -54472,7 +54664,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1033 + "line": 1047 } }, { @@ -54498,7 +54690,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1034 + "line": 1048 } }, { @@ -54524,7 +54716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1035 + "line": 1049 } }, { @@ -54550,7 +54742,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1036 + "line": 1050 } }, { @@ -54576,7 +54768,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1037 + "line": 1051 } }, { @@ -54602,7 +54794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1038 + "line": 1052 } }, { @@ -54628,7 +54820,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1039 + "line": 1053 } }, { @@ -54663,7 +54855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1045 + "line": 1059 } }, { @@ -54695,7 +54887,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1048 + "line": 1062 } }, { @@ -54742,7 +54934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1048 + "line": 1062 } }, { @@ -54771,7 +54963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1049 + "line": 1063 } }, { @@ -54818,7 +55010,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1049 + "line": 1063 } }, { @@ -54861,7 +55053,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1052 + "line": 1066 } }, { @@ -54914,7 +55106,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1053 + "line": 1067 } }, { @@ -54940,7 +55132,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1054 + "line": 1068 } }, { @@ -54966,7 +55158,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1055 + "line": 1069 } }, { @@ -54995,7 +55187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1056 + "line": 1070 } }, { @@ -55041,7 +55233,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1057 + "line": 1071 } }, { @@ -55084,7 +55276,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1058 + "line": 1072 } }, { @@ -55110,7 +55302,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1059 + "line": 1073 } }, { @@ -55159,7 +55351,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1062 + "line": 1076 } }, { @@ -55250,7 +55442,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1062 + "line": 1076 } }, { @@ -55292,7 +55484,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1065 + "line": 1079 } }, { @@ -55329,7 +55521,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1066 + "line": 1080 } }, { @@ -55446,7 +55638,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1067 + "line": 1081 } }, { @@ -55563,7 +55755,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1068 + "line": 1082 } }, { @@ -55609,7 +55801,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1074 + "line": 1088 } }, { @@ -55649,7 +55841,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1075 + "line": 1089 } }, { @@ -55703,7 +55895,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1075 + "line": 1089 } }, { @@ -55743,7 +55935,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1076 + "line": 1090 } }, { @@ -55783,7 +55975,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1077 + "line": 1091 } }, { @@ -55849,7 +56041,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1078 + "line": 1092 } }, { @@ -55895,7 +56087,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1079 + "line": 1093 } }, { @@ -55935,7 +56127,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1080 + "line": 1094 } }, { @@ -55987,8 +56179,8 @@ "preceding": [ "// Inputs Utilities: Shortcut Testing & Routing [BETA]", "// - ImGuiKeyChord = a ImGuiKey + optional ImGuiMod_Alt/ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Super.", - "// ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments)", - "// ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments)", + "// ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments", + "// ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments", "// only ImGuiMod_XXX values are legal to combine with an ImGuiKey. You CANNOT combine two ImGuiKey values.", "// - The general idea is that several callers may register interest in a shortcut, and only one owner gets it.", "// Parent -> call Shortcut(Ctrl+S) // When Parent is focused, Parent gets the shortcut.", @@ -56005,7 +56197,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1097 + "line": 1111 } }, { @@ -56056,7 +56248,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1098 + "line": 1112 } }, { @@ -56104,7 +56296,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1106 + "line": 1120 } }, { @@ -56150,7 +56342,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1112 + "line": 1126 } }, { @@ -56190,7 +56382,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1113 + "line": 1127 } }, { @@ -56244,7 +56436,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1113 + "line": 1127 } }, { @@ -56284,7 +56476,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1114 + "line": 1128 } }, { @@ -56324,7 +56516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1115 + "line": 1129 } }, { @@ -56377,7 +56569,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1116 + "line": 1130 } }, { @@ -56417,7 +56609,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1117 + "line": 1131 } }, { @@ -56470,7 +56662,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1118 + "line": 1132 } }, { @@ -56537,7 +56729,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1118 + "line": 1132 } }, { @@ -56584,7 +56776,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1119 + "line": 1133 } }, { @@ -56610,7 +56802,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1120 + "line": 1134 } }, { @@ -56636,7 +56828,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1121 + "line": 1135 } }, { @@ -56662,7 +56854,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1122 + "line": 1136 } }, { @@ -56716,7 +56908,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1123 + "line": 1137 } }, { @@ -56771,7 +56963,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1124 + "line": 1138 } }, { @@ -56797,7 +56989,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1125 + "line": 1139 } }, { @@ -56838,7 +57030,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1125 + "line": 1139 } }, { @@ -56864,7 +57056,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1126 + "line": 1140 } }, { @@ -56904,7 +57096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1127 + "line": 1141 } }, { @@ -56944,7 +57136,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1128 + "line": 1142 } }, { @@ -56979,7 +57171,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1132 + "line": 1146 } }, { @@ -57022,7 +57214,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1133 + "line": 1147 } }, { @@ -57074,7 +57266,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1139 + "line": 1153 } }, { @@ -57134,7 +57326,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1140 + "line": 1154 } }, { @@ -57180,7 +57372,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1141 + "line": 1155 } }, { @@ -57230,7 +57422,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1142 + "line": 1156 } }, { @@ -57279,7 +57471,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1146 + "line": 1160 } }, { @@ -57316,7 +57508,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1147 + "line": 1161 } }, { @@ -57339,7 +57531,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1148 + "line": 1162 } }, { @@ -57463,7 +57655,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1149 + "line": 1163 } }, { @@ -57521,7 +57713,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1151 + "line": 1165 } }, { @@ -57584,7 +57776,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1152 + "line": 1166 } }, { @@ -57659,7 +57851,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1159 + "line": 1173 } }, { @@ -57734,7 +57926,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1160 + "line": 1174 } }, { @@ -57774,7 +57966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1161 + "line": 1175 } }, { @@ -57814,7 +58006,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1162 + "line": 1176 } }, { @@ -57845,7 +58037,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1167 + "line": 1181 } }, { @@ -57871,7 +58063,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1168 + "line": 1182 } }, { @@ -57932,7 +58124,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1168 + "line": 1182 } }, { @@ -57958,7 +58150,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1169 + "line": 1183 } }, { @@ -57976,7 +58168,7 @@ }, "arguments": [ { - "name": "id", + "name": "viewport_id", "type": { "declaration": "ImGuiID", "description": { @@ -58001,7 +58193,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1170 + "line": 1184 } }, { @@ -58047,7 +58239,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 1171 + "line": 1185 } }, { @@ -58719,7 +58911,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2401 + "line": 2435 } }, { @@ -58793,7 +58985,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2570 + "line": 2605 } }, { @@ -58877,7 +59069,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2571 + "line": 2606 } }, { @@ -58948,7 +59140,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2572 + "line": 2607 } }, { @@ -59019,7 +59211,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2573 + "line": 2608 } }, { @@ -59090,7 +59282,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2574 + "line": 2609 } }, { @@ -59148,7 +59340,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2575 + "line": 2610 } }, { @@ -59206,7 +59398,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2576 + "line": 2611 } }, { @@ -59264,7 +59456,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2577 + "line": 2612 } }, { @@ -59322,7 +59514,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2578 + "line": 2613 } }, { @@ -59380,7 +59572,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2579 + "line": 2614 } }, { @@ -59444,7 +59636,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2580 + "line": 2615 } }, { @@ -59528,7 +59720,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2582 + "line": 2617 } }, { @@ -59626,7 +59818,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2582 + "line": 2617 } }, { @@ -59684,7 +59876,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2583 + "line": 2618 } }, { @@ -59729,7 +59921,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2584 + "line": 2619 } }, { @@ -59774,7 +59966,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2585 + "line": 2620 } }, { @@ -59819,58 +60011,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2586 - } - }, - { - "name": "ImGuiIO_ClearInputCharacters", - "original_fully_qualified_name": "ClearInputCharacters", - "return_type": { - "declaration": "void", - "description": { - "kind": "Builtin", - "builtin_type": "void" - } - }, - "arguments": [ - { - "name": "self", - "type": { - "declaration": "ImGuiIO*", - "description": { - "kind": "Pointer", - "is_nullable": false, - "inner_type": { - "kind": "User", - "name": "ImGuiIO" - } - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": true - } - ], - "is_default_argument_helper": false, - "is_manual_helper": false, - "is_imstr_helper": false, - "has_imstr_helper": false, - "is_unformatted_helper": false, - "is_static": false, - "original_class": "ImGuiIO", - "comments": { - "attached": "// [Obsoleted in 1.89.8] Clear the current frame text input buffer. Now included within ClearInputKeys()." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 2588 + "line": 2621 } }, { @@ -59938,7 +60079,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2719 + "line": 2753 } }, { @@ -60032,7 +60173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2720 + "line": 2754 } }, { @@ -60074,7 +60215,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2721 + "line": 2755 } }, { @@ -60116,7 +60257,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2722 + "line": 2756 } }, { @@ -60161,7 +60302,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2723 + "line": 2757 } }, { @@ -60203,7 +60344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2774 + "line": 2808 } }, { @@ -60267,7 +60408,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2775 + "line": 2809 } }, { @@ -60312,7 +60453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2776 + "line": 2810 } }, { @@ -60357,7 +60498,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2777 + "line": 2811 } }, { @@ -60402,7 +60543,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2819 + "line": 2853 } }, { @@ -60476,7 +60617,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2820 + "line": 2854 } }, { @@ -60555,7 +60696,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2805 + "line": 2839 } }, { @@ -60639,7 +60780,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2806 + "line": 2840 } }, { @@ -60681,7 +60822,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2807 + "line": 2841 } }, { @@ -60723,7 +60864,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2808 + "line": 2842 } }, { @@ -60768,7 +60909,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2809 + "line": 2843 } }, { @@ -60819,7 +60960,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2836 + "line": 2870 } }, { @@ -60873,7 +61014,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2837 + "line": 2871 } }, { @@ -60918,7 +61059,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2838 + "line": 2872 } }, { @@ -60963,7 +61104,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2839 + "line": 2873 } }, { @@ -61005,7 +61146,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2840 + "line": 2874 } }, { @@ -61063,7 +61204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2841 + "line": 2875 } }, { @@ -61118,7 +61259,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2842 + "line": 2876 } }, { @@ -61169,7 +61310,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2843 + "line": 2877 } }, { @@ -61250,7 +61391,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2844 + "line": 2878 } }, { @@ -61317,7 +61458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2845 + "line": 2879 } }, { @@ -61392,7 +61533,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2846 + "line": 2880 } }, { @@ -61441,7 +61582,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2875 + "line": 2909 } }, { @@ -61513,7 +61654,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2876 + "line": 2910 } }, { @@ -61581,7 +61722,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2877 + "line": 2911 } }, { @@ -61653,7 +61794,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2878 + "line": 2912 } }, { @@ -61721,7 +61862,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2879 + "line": 2913 } }, { @@ -61793,7 +61934,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2880 + "line": 2914 } }, { @@ -61861,7 +62002,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2881 + "line": 2915 } }, { @@ -61925,7 +62066,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2882 + "line": 2916 } }, { @@ -61996,7 +62137,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2883 + "line": 2917 } }, { @@ -62076,7 +62217,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2889 + "line": 2923 } }, { @@ -62148,7 +62289,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2890 + "line": 2924 } }, { @@ -62220,7 +62361,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2891 + "line": 2925 } }, { @@ -62298,7 +62439,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2892 + "line": 2926 } }, { @@ -62345,7 +62486,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2895 + "line": 2929 } }, { @@ -62405,7 +62546,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2897 + "line": 2931 } }, { @@ -62474,7 +62615,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2939 + "line": 2981 } }, { @@ -62519,7 +62660,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2940 + "line": 2982 } }, { @@ -62564,7 +62705,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2941 + "line": 2983 } }, { @@ -62625,7 +62766,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2945 + "line": 2987 } }, { @@ -62696,7 +62837,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2946 + "line": 2988 } }, { @@ -62758,84 +62899,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 2951 - } - }, - { - "name": "ImGuiListClipper_IncludeRangeByIndices", - "original_fully_qualified_name": "IncludeRangeByIndices", - "return_type": { - "declaration": "void", - "description": { - "kind": "Builtin", - "builtin_type": "void" - } - }, - "arguments": [ - { - "name": "self", - "type": { - "declaration": "ImGuiListClipper*", - "description": { - "kind": "Pointer", - "is_nullable": false, - "inner_type": { - "kind": "User", - "name": "ImGuiListClipper" - } - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": true - }, - { - "name": "item_begin", - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": false - }, - { - "name": "item_end", - "type": { - "declaration": "int", - "description": { - "kind": "Builtin", - "builtin_type": "int" - } - }, - "is_array": false, - "is_varargs": false, - "is_instance_pointer": false - } - ], - "is_default_argument_helper": false, - "is_manual_helper": false, - "is_imstr_helper": false, - "has_imstr_helper": false, - "is_unformatted_helper": false, - "is_static": false, - "original_class": "ImGuiListClipper", - "comments": { - "attached": "// [renamed in 1.89.9]" - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 2954 + "line": 2993 } }, { @@ -62935,7 +62999,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3037 + "line": 3079 } }, { @@ -63013,7 +63077,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3038 + "line": 3080 } }, { @@ -63074,7 +63138,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3167 + "line": 3210 } }, { @@ -63135,7 +63199,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3168 + "line": 3211 } }, { @@ -63180,7 +63244,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3169 + "line": 3212 } }, { @@ -63243,7 +63307,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3170 + "line": 3213 } }, { @@ -63314,7 +63378,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3171 + "line": 3214 } }, { @@ -63394,7 +63458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3172 + "line": 3215 } }, { @@ -63452,7 +63516,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3173 + "line": 3216 } }, { @@ -63513,7 +63577,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3186 + "line": 3229 } }, { @@ -63560,12 +63624,12 @@ "// Since 1.83: returns ImTextureID associated with this draw call. Warning: DO NOT assume this is always same as 'TextureId' (we will change this function for an upcoming feature)", "// Since 1.92: removed ImDrawCmd::TextureId field, the getter function must be used!" ], - "attached": "// == (TexRef._TexData ? TexRef._TexData->TexID : TexRef._TexID" + "attached": "// == (TexRef._TexData ? TexRef._TexData->TexID : TexRef._TexID)" }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3244 + "line": 3287 } }, { @@ -63610,7 +63674,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3288 + "line": 3331 } }, { @@ -63652,7 +63716,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3289 + "line": 3332 } }, { @@ -63723,7 +63787,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3290 + "line": 3333 } }, { @@ -63781,7 +63845,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3291 + "line": 3334 } }, { @@ -63852,7 +63916,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3292 + "line": 3335 } }, { @@ -63937,7 +64001,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3362 + "line": 3405 } }, { @@ -63979,7 +64043,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3363 + "line": 3406 } }, { @@ -64021,7 +64085,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3364 + "line": 3407 } }, { @@ -64076,7 +64140,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3365 + "line": 3408 } }, { @@ -64118,7 +64182,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3366 + "line": 3409 } }, { @@ -64163,7 +64227,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3367 + "line": 3410 } }, { @@ -64208,7 +64272,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3368 + "line": 3411 } }, { @@ -64301,7 +64365,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3377 + "line": 3420 } }, { @@ -64396,7 +64460,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3377 + "line": 3420 } }, { @@ -64480,7 +64544,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3378 + "line": 3421 } }, { @@ -64606,7 +64670,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3378 + "line": 3421 } }, { @@ -64690,7 +64754,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3379 + "line": 3422 } }, { @@ -64802,7 +64866,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3379 + "line": 3422 } }, { @@ -64922,7 +64986,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3380 + "line": 3423 } }, { @@ -65032,7 +65096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3381 + "line": 3424 } }, { @@ -65153,7 +65217,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3381 + "line": 3424 } }, { @@ -65260,7 +65324,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3382 + "line": 3425 } }, { @@ -65357,7 +65421,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3383 + "line": 3426 } }, { @@ -65465,7 +65529,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3383 + "line": 3426 } }, { @@ -65559,7 +65623,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3384 + "line": 3427 } }, { @@ -65643,7 +65707,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3385 + "line": 3428 } }, { @@ -65752,7 +65816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3385 + "line": 3428 } }, { @@ -65847,7 +65911,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3386 + "line": 3429 } }, { @@ -65944,7 +66008,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3387 + "line": 3430 } }, { @@ -66052,7 +66116,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3387 + "line": 3430 } }, { @@ -66146,7 +66210,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3388 + "line": 3431 } }, { @@ -66230,7 +66294,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3389 + "line": 3432 } }, { @@ -66353,7 +66417,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3389 + "line": 3432 } }, { @@ -66437,7 +66501,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3390 + "line": 3433 } }, { @@ -66546,7 +66610,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3390 + "line": 3433 } }, { @@ -66636,7 +66700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3391 + "line": 3434 } }, { @@ -66743,7 +66807,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3391 + "line": 3434 } }, { @@ -66862,7 +66926,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3392 + "line": 3435 } }, { @@ -67032,7 +67096,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3392 + "line": 3435 } }, { @@ -67169,7 +67233,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3393 + "line": 3436 } }, { @@ -67293,7 +67357,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3394 + "line": 3437 } }, { @@ -67413,7 +67477,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3399 + "line": 3442 } }, { @@ -67500,7 +67564,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3400 + "line": 3443 } }, { @@ -67587,7 +67651,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3401 + "line": 3444 } }, { @@ -67677,7 +67741,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3407 + "line": 3450 } }, { @@ -67800,7 +67864,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3407 + "line": 3450 } }, { @@ -67910,7 +67974,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3408 + "line": 3451 } }, { @@ -68087,7 +68151,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3408 + "line": 3451 } }, { @@ -68234,7 +68298,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3409 + "line": 3452 } }, { @@ -68283,7 +68347,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3414 + "line": 3457 } }, { @@ -68338,7 +68402,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3415 + "line": 3458 } }, { @@ -68393,7 +68457,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3416 + "line": 3459 } }, { @@ -68448,7 +68512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3417 + "line": 3460 } }, { @@ -68503,7 +68567,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3418 + "line": 3461 } }, { @@ -68586,7 +68650,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3419 + "line": 3462 } }, { @@ -68694,7 +68758,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3420 + "line": 3463 } }, { @@ -68791,7 +68855,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3421 + "line": 3464 } }, { @@ -68901,7 +68965,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3422 + "line": 3465 } }, { @@ -69025,7 +69089,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3422 + "line": 3465 } }, { @@ -69123,7 +69187,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3423 + "line": 3466 } }, { @@ -69208,7 +69272,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3424 + "line": 3467 } }, { @@ -69304,7 +69368,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3425 + "line": 3468 } }, { @@ -69389,7 +69453,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3436 + "line": 3479 } }, { @@ -69474,7 +69538,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3436 + "line": 3479 } }, { @@ -69522,7 +69586,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3439 + "line": 3482 } }, { @@ -69568,12 +69632,12 @@ "is_static": false, "original_class": "ImDrawList", "comments": { - "attached": "// Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer." + "attached": "// Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. For multi-threaded rendering, consider using `imgui_threaded_rendering` from https://github.com/ocornut/imgui_club instead." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3440 + "line": 3483 } }, { @@ -69638,7 +69702,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3448 + "line": 3491 } }, { @@ -69680,7 +69744,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3449 + "line": 3492 } }, { @@ -69735,7 +69799,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3450 + "line": 3493 } }, { @@ -69810,7 +69874,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3455 + "line": 3498 } }, { @@ -69878,7 +69942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3456 + "line": 3499 } }, { @@ -69962,7 +70026,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3457 + "line": 3500 } }, { @@ -70069,7 +70133,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3458 + "line": 3501 } }, { @@ -70228,7 +70292,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3459 + "line": 3502 } }, { @@ -70309,7 +70373,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3460 + "line": 3503 } }, { @@ -70364,7 +70428,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3461 + "line": 3504 } }, { @@ -70448,7 +70512,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3462 + "line": 3505 } }, { @@ -70501,7 +70565,7 @@ "is_static": false, "original_class": "ImDrawList", "comments": { - "attached": "// RENAMED in 1.92.x" + "attached": "// RENAMED in 1.92.0" }, "conditionals": [ { @@ -70512,7 +70576,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3466 + "line": 3509 } }, { @@ -70552,7 +70616,7 @@ "is_static": false, "original_class": "ImDrawList", "comments": { - "attached": "// RENAMED in 1.92.x" + "attached": "// RENAMED in 1.92.0" }, "conditionals": [ { @@ -70563,7 +70627,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3467 + "line": 3510 } }, { @@ -70626,7 +70690,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3476 + "line": 3519 } }, { @@ -70668,7 +70732,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3477 + "line": 3520 } }, { @@ -70710,7 +70774,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3478 + "line": 3521 } }, { @@ -70752,7 +70816,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3479 + "line": 3522 } }, { @@ -70794,7 +70858,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3480 + "line": 3523 } }, { @@ -70836,7 +70900,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3481 + "line": 3524 } }, { @@ -70878,7 +70942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3482 + "line": 3525 } }, { @@ -70920,7 +70984,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3483 + "line": 3526 } }, { @@ -70975,7 +71039,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3484 + "line": 3527 } }, { @@ -71033,7 +71097,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3485 + "line": 3528 } }, { @@ -71140,7 +71204,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3486 + "line": 3529 } }, { @@ -71247,7 +71311,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3487 + "line": 3530 } }, { @@ -71289,7 +71353,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3508 + "line": 3551 } }, { @@ -71350,7 +71414,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3509 + "line": 3552 } }, { @@ -71395,7 +71459,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3510 + "line": 3553 } }, { @@ -71453,7 +71517,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3511 + "line": 3554 } }, { @@ -71534,7 +71598,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3581 + "line": 3624 } }, { @@ -71576,7 +71640,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3582 + "line": 3625 } }, { @@ -71621,7 +71685,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3583 + "line": 3626 } }, { @@ -71692,7 +71756,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3584 + "line": 3627 } }, { @@ -71737,7 +71801,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3585 + "line": 3628 } }, { @@ -71782,7 +71846,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3586 + "line": 3629 } }, { @@ -71824,7 +71888,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3587 + "line": 3630 } }, { @@ -71869,7 +71933,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3588 + "line": 3631 } }, { @@ -71923,14 +71987,15 @@ "original_class": "ImTextureData", "comments": { "preceding": [ - "// Called by Renderer backend" - ], - "attached": "// Call after creating or destroying the texture. Never modify TexID directly!" + "// Called by Renderer backend", + "// - Call SetTexID() and SetStatus() after honoring texture requests. Never modify TexID and Status directly!", + "// - A backend may decide to destroy a texture that we did not request to destroy, which is fine (e.g. freeing resources), but we immediately set the texture back in _WantCreate mode." + ] }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3591 + "line": 3636 } }, { @@ -71982,13 +72047,10 @@ "is_unformatted_helper": false, "is_static": false, "original_class": "ImTextureData", - "comments": { - "attached": "// Call after honoring a request. Never modify Status directly!" - }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3592 + "line": 3637 } }, { @@ -72030,7 +72092,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3661 + "line": 3706 } }, { @@ -72091,7 +72153,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3662 + "line": 3707 } }, { @@ -72149,7 +72211,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3663 + "line": 3708 } }, { @@ -72207,7 +72269,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3664 + "line": 3709 } }, { @@ -72291,7 +72353,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3665 + "line": 3710 } }, { @@ -72355,7 +72417,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3666 + "line": 3711 } }, { @@ -72416,7 +72478,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3667 + "line": 3712 } }, { @@ -72480,7 +72542,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3719 + "line": 3764 } }, { @@ -72545,7 +72607,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3720 + "line": 3765 } }, { @@ -72663,7 +72725,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3721 + "line": 3766 } }, { @@ -72794,7 +72856,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3722 + "line": 3767 } }, { @@ -72928,7 +72990,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3723 + "line": 3768 } }, { @@ -73049,7 +73111,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3724 + "line": 3769 } }, { @@ -73107,7 +73169,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3725 + "line": 3770 } }, { @@ -73147,12 +73209,12 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// Clear everything (input fonts, output glyphs/textures)" + "attached": "// Clear everything (input fonts, output glyphs/textures)." }, "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3727 + "line": 3772 } }, { @@ -73197,7 +73259,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3728 + "line": 3773 } }, { @@ -73261,7 +73323,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3729 + "line": 3774 } }, { @@ -73309,7 +73371,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3732 + "line": 3777 } }, { @@ -73354,7 +73416,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3733 + "line": 3778 } }, { @@ -73399,7 +73461,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3734 + "line": 3779 } }, { @@ -73444,7 +73506,7 @@ "// - User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID().", "// - The pitch is always = Width * BytesPerPixels (1 or 4)", "// - Building in RGBA32 format is provided for convenience and compatibility, but note that unless you manually manipulate or copy color data into", - "// the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste.", + "// the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste).", "// - From 1.92 with backends supporting ImGuiBackendFlags_RendererHasTextures:", "// - Calling Build(), GetTexDataAsAlpha8(), GetTexDataAsRGBA32() is not needed.", "// - In backend: replace calls to ImFontAtlas::SetTexID() with calls to ImTextureData::SetTexID() after honoring texture creation." @@ -73460,7 +73522,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3745 + "line": 3790 } }, { @@ -73579,7 +73641,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3746 + "line": 3791 } }, { @@ -73698,7 +73760,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3747 + "line": 3792 } }, { @@ -73762,7 +73824,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3748 + "line": 3793 } }, { @@ -73826,7 +73888,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3749 + "line": 3794 } }, { @@ -73880,7 +73942,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3750 + "line": 3795 } }, { @@ -73934,7 +73996,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3758 + "line": 3803 } }, { @@ -73997,7 +74059,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3764 + "line": 3809 } }, { @@ -74054,7 +74116,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3765 + "line": 3810 } }, { @@ -74111,7 +74173,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3766 + "line": 3811 } }, { @@ -74168,7 +74230,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3767 + "line": 3812 } }, { @@ -74225,7 +74287,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3768 + "line": 3813 } }, { @@ -74282,7 +74344,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3769 + "line": 3814 } }, { @@ -74339,7 +74401,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3770 + "line": 3815 } }, { @@ -74396,7 +74458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3771 + "line": 3816 } }, { @@ -74482,7 +74544,7 @@ "preceding": [ "// Register and retrieve custom rectangles", "// - You can request arbitrary rectangles to be packed into the atlas, for your own purpose.", - "// - Since 1.92.X, packing is done immediately in the function call (previously packing was done during the Build call)", + "// - Since 1.92.0, packing is done immediately in the function call (previously packing was done during the Build call)", "// - You can render your pixels into the texture right after calling the AddCustomRect() functions.", "// - VERY IMPORTANT:", "// - Texture may be created/resized at any time when calling ImGui or ImFontAtlas functions.", @@ -74503,7 +74565,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3795 + "line": 3840 } }, { @@ -74561,7 +74623,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3796 + "line": 3841 } }, { @@ -74638,7 +74700,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3797 + "line": 3842 } }, { @@ -74704,7 +74766,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// RENAMED in 1.92.X" + "attached": "// RENAMED in 1.92.0" }, "conditionals": [ { @@ -74715,7 +74777,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3849 + "line": 3894 } }, { @@ -74774,7 +74836,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// OBSOLETED in 1.92.X" + "attached": "// OBSOLETED in 1.92.0" }, "conditionals": [ { @@ -74785,7 +74847,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3850 + "line": 3895 } }, { @@ -74879,7 +74941,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// OBSOLETED in 1.92.X" + "attached": "// OBSOLETED in 1.92.0" }, "conditionals": [ { @@ -74890,7 +74952,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3851 + "line": 3896 } }, { @@ -75012,7 +75074,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// OBSOLETED in 1.92.X: Use custom ImFontLoader in ImFontConfig" + "attached": "// OBSOLETED in 1.92.0: Use custom ImFontLoader in ImFontConfig" }, "conditionals": [ { @@ -75023,7 +75085,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3852 + "line": 3897 } }, { @@ -75158,7 +75220,7 @@ "is_static": false, "original_class": "ImFontAtlas", "comments": { - "attached": "// ADDED AND OBSOLETED in 1.92.X" + "attached": "// ADDED AND OBSOLETED in 1.92.0" }, "conditionals": [ { @@ -75169,7 +75231,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3853 + "line": 3898 } }, { @@ -75211,7 +75273,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3890 + "line": 3935 } }, { @@ -75272,7 +75334,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3891 + "line": 3936 } }, { @@ -75333,7 +75395,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3892 + "line": 3937 } }, { @@ -75388,7 +75450,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3893 + "line": 3938 } }, { @@ -75443,7 +75505,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3894 + "line": 3939 } }, { @@ -75498,7 +75560,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3937 + "line": 3982 } }, { @@ -75543,7 +75605,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3938 + "line": 3983 } }, { @@ -75597,7 +75659,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3939 + "line": 3984 } }, { @@ -75663,7 +75725,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3944 + "line": 3989 } }, { @@ -75738,7 +75800,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3944 + "line": 3989 } }, { @@ -75836,12 +75898,12 @@ "is_static": false, "original_class": "ImFont", "comments": { - "attached": "// Implied text_end = NULL, remaining = NULL" + "attached": "// Implied text_end = NULL, out_remaining = NULL" }, "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3945 + "line": 3990 } }, { @@ -75951,7 +76013,7 @@ "is_instance_pointer": false }, { - "name": "remaining", + "name": "out_remaining", "type": { "declaration": "const char**", "description": { @@ -75981,13 +76043,10 @@ "is_unformatted_helper": false, "is_static": false, "original_class": "ImFont", - "comments": { - "attached": "// utf8" - }, "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3945 + "line": 3990 } }, { @@ -76099,7 +76158,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3946 + "line": 3991 } }, { @@ -76212,7 +76271,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3947 + "line": 3992 } }, { @@ -76342,7 +76401,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3947 + "line": 3992 } }, { @@ -76494,17 +76553,17 @@ "is_instance_pointer": false }, { - "name": "cpu_fine_clip", + "name": "flags", "type": { - "declaration": "bool", + "declaration": "ImDrawTextFlags", "description": { - "kind": "Builtin", - "builtin_type": "bool" + "kind": "User", + "name": "ImDrawTextFlags" } }, "is_array": false, "is_varargs": false, - "default_value": "false", + "default_value": "0", "is_instance_pointer": false } ], @@ -76518,7 +76577,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3948 + "line": 3993 } }, { @@ -76636,7 +76695,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 3950 + "line": 3995 } }, { @@ -76683,7 +76742,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3954 + "line": 3999 } }, { @@ -76754,7 +76813,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3955 + "line": 4000 } }, { @@ -76822,7 +76881,7 @@ "is_internal": true, "source_location": { "filename": "imgui.h", - "line": 3956 + "line": 4001 } }, { @@ -76872,7 +76931,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4041 + "line": 4087 } }, { @@ -76917,7 +76976,97 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4042 + "line": 4088 + } + }, + { + "name": "ImGuiPlatformIO_ClearPlatformHandlers", + "original_fully_qualified_name": "ClearPlatformHandlers", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "self", + "type": { + "declaration": "ImGuiPlatformIO*", + "description": { + "kind": "Pointer", + "is_nullable": false, + "inner_type": { + "kind": "User", + "name": "ImGuiPlatformIO" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": true + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "original_class": "ImGuiPlatformIO", + "comments": { + "attached": "// Clear all Platform_XXX fields. Typically called on Platform Backend shutdown." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 4248 + } + }, + { + "name": "ImGuiPlatformIO_ClearRendererHandlers", + "original_fully_qualified_name": "ClearRendererHandlers", + "return_type": { + "declaration": "void", + "description": { + "kind": "Builtin", + "builtin_type": "void" + } + }, + "arguments": [ + { + "name": "self", + "type": { + "declaration": "ImGuiPlatformIO*", + "description": { + "kind": "Pointer", + "is_nullable": false, + "inner_type": { + "kind": "User", + "name": "ImGuiPlatformIO" + } + } + }, + "is_array": false, + "is_varargs": false, + "is_instance_pointer": true + } + ], + "is_default_argument_helper": false, + "is_manual_helper": false, + "is_imstr_helper": false, + "has_imstr_helper": false, + "is_unformatted_helper": false, + "is_static": false, + "original_class": "ImGuiPlatformIO", + "comments": { + "attached": "// Clear all Renderer_XXX fields. Typically called on Renderer Backend shutdown." + }, + "is_internal": false, + "source_location": { + "filename": "imgui.h", + "line": 4249 } }, { @@ -76968,7 +77117,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4232 + "line": 4285 } }, { @@ -77014,7 +77163,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4233 + "line": 4286 } }, { @@ -77128,7 +77277,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4235 + "line": 4288 } }, { @@ -77176,7 +77325,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4237 + "line": 4290 } }, { @@ -77205,7 +77354,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4238 + "line": 4291 } }, { @@ -77248,7 +77397,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4239 + "line": 4292 } }, { @@ -77277,7 +77426,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4240 + "line": 4293 } }, { @@ -77309,7 +77458,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4241 + "line": 4294 } }, { @@ -77341,7 +77490,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4242 + "line": 4295 } }, { @@ -77373,7 +77522,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4243 + "line": 4296 } }, { @@ -77435,7 +77584,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4245 + "line": 4298 } }, { @@ -77505,7 +77654,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4245 + "line": 4298 } }, { @@ -77534,7 +77683,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4246 + "line": 4299 } }, { @@ -77587,7 +77736,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4249 + "line": 4302 } }, { @@ -77808,7 +77957,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4250 + "line": 4303 } }, { @@ -78040,7 +78189,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4250 + "line": 4303 } }, { @@ -78261,7 +78410,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4251 + "line": 4304 } }, { @@ -78493,42 +78642,7 @@ "is_internal": false, "source_location": { "filename": "imgui.h", - "line": 4251 - } - }, - { - "name": "ImGui_SetItemAllowOverlap", - "original_fully_qualified_name": "ImGui::SetItemAllowOverlap", - "return_type": { - "declaration": "void", - "description": { - "kind": "Builtin", - "builtin_type": "void" - } - }, - "arguments": [], - "is_default_argument_helper": false, - "is_manual_helper": false, - "is_imstr_helper": false, - "has_imstr_helper": false, - "is_unformatted_helper": false, - "is_static": false, - "comments": { - "preceding": [ - "// OBSOLETED in 1.89.7 (from June 2023)" - ], - "attached": "// Use SetNextItemAllowOverlap() before item." - }, - "conditionals": [ - { - "condition": "ifndef", - "expression": "IMGUI_DISABLE_OBSOLETE_FUNCTIONS" - } - ], - "is_internal": false, - "source_location": { - "filename": "imgui.h", - "line": 4253 + "line": 4304 } } ] diff --git a/src/generate.zig b/src/generate.zig index 63f434f..ccb2d4b 100644 --- a/src/generate.zig +++ b/src/generate.zig @@ -688,7 +688,7 @@ fn writeStructs( try writeType(writer, field.type, declarations, .{}); if (field.default_value) |v| { try writer.writeAll(" = "); - try writeValue(writer, v); + try writeValue(writer, field.type, declarations, v); } try writer.writeAll(",\n"); } @@ -706,7 +706,20 @@ fn writeStructs( } } -pub fn writeValue(writer: anytype, value: []const u8) !void { +pub fn writeValue( + writer: anytype, + ty: Header.Type, + declarations: *const Declarations, + value: []const u8, +) !void { + // Replace {} with std.mem.zeroes(T) + if (std.mem.eql(u8, "{}", value)) { + try writer.writeAll("@import(\"std\").mem.zeroes("); + try writeType(writer, ty, declarations, .{}); + try writer.writeAll(")"); + return; + } + // Strip the `f` postfix off of floats float: { if (value.len > 0 and @@ -942,9 +955,12 @@ fn writePointerType( // value or nullable. We fall back to a c pointer so that the user can decide how to // interpret it with less friction, unless it's an opaque type in which case that's not // allowed so we assume it's a nullable single value pointer. - if (is_opaque or is_void) { + // XXX: ... + const is_context = ty.declaration != null and std.mem.eql(u8, "ImGuiContext*", ty.declaration.?); // https://codeberg.org/Games-by-Mason/dear_imgui_zig/issues/5 + if (is_opaque or is_void or is_context) { try writer.writeAll("?*"); } else { + std.log.err("{}", .{ty}); try writer.writeAll("[*c]"); } } diff --git a/src/templates/impl_vulkan_prefix.zig.template b/src/templates/impl_vulkan_prefix.zig.template index a12b67e..8b6330b 100644 --- a/src/templates/impl_vulkan_prefix.zig.template +++ b/src/templates/impl_vulkan_prefix.zig.template @@ -1,5 +1,6 @@ const DrawData = @import("dear_imgui").DrawData; const TextureData = @import("dear_imgui").TextureData; +const Viewport = @import("dear_imgui").Viewport; const Options = struct { PFNvkVoidFunction: type, @@ -13,15 +14,17 @@ const Options = struct { VkDevice: type, VkDeviceSize: type, VkFence: type, + VkFormat: type, VkFramebuffer: type, VkImage: type, VkImageLayout: type, + VkImageUsageFlags: type, VkImageView: type, VkInstance: type, VkPhysicalDevice: type, VkPipeline: type, - VkPipelineLayout: type, VkPipelineCache: type, + VkPipelineLayout: type, VkPipelineRenderingCreateInfoKHR: type, VkPresentModeKHR: type, VkQueue: type, @@ -30,10 +33,10 @@ const Options = struct { VkSampleCountFlagBits: type, VkSampler: type, VkSemaphore: type, + VkShaderModuleCreateInfo: type, VkSurfaceFormatKHR: type, VkSurfaceKHR: type, VkSwapchainKHR: type, - VkFormat: type, }; pub fn get(options: Options) type { @@ -52,6 +55,7 @@ pub fn get(options: Options) type { const VkFramebuffer = options.VkFramebuffer; const VkImage = options.VkImage; const VkImageLayout = options.VkImageLayout; + const VkImageUsageFlags = options.VkImageUsageFlags; const VkImageView = options.VkImageView; const VkInstance = options.VkInstance; const VkPhysicalDevice = options.VkPhysicalDevice; @@ -66,6 +70,7 @@ pub fn get(options: Options) type { const VkSampleCountFlagBits = options.VkSampleCountFlagBits; const VkSampler = options.VkSampler; const VkSemaphore = options.VkSemaphore; + const VkShaderModuleCreateInfo = options.VkShaderModuleCreateInfo; const VkSurfaceFormatKHR = options.VkSurfaceFormatKHR; const VkSurfaceKHR = options.VkSurfaceKHR; const VkSwapchainKHR = options.VkSwapchainKHR;