From 5cbad8418fc089fd544e199d4787dec0f6d16914 Mon Sep 17 00:00:00 2001 From: JamesWrigley Date: Tue, 8 Oct 2024 11:56:57 +0200 Subject: [PATCH] Update for v1.91.2 --- Project.toml | 4 +- docs/src/_changelog.md | 8 + lib/aarch64-apple-darwin20.jl | 601 ++++--- lib/aarch64-linux-gnu.jl | 601 ++++--- lib/aarch64-linux-musl.jl | 601 ++++--- lib/armv7l-linux-gnueabihf.jl | 601 ++++--- lib/armv7l-linux-musleabihf.jl | 601 ++++--- lib/i686-linux-gnu.jl | 601 ++++--- lib/i686-linux-musl.jl | 601 ++++--- lib/i686-w64-mingw32.jl | 601 ++++--- lib/powerpc64le-linux-gnu.jl | 601 ++++--- lib/x86_64-apple-darwin14.jl | 601 ++++--- lib/x86_64-linux-gnu.jl | 601 ++++--- lib/x86_64-linux-musl.jl | 601 ++++--- lib/x86_64-unknown-freebsd13.2.jl | 601 ++++--- lib/x86_64-w64-mingw32.jl | 601 ++++--- src/wrapper.jl | 2629 ++++++++++++++--------------- 17 files changed, 5267 insertions(+), 5788 deletions(-) diff --git a/Project.toml b/Project.toml index a5a5ac4..d276e59 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "CImGui" uuid = "5d785b6c-b76f-510e-a07c-3070796c7e87" authors = ["Yupei Qi "] -version = "3.0.0" +version = "3.1.0" [deps] CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82" @@ -23,7 +23,7 @@ MakieIntegration = ["GLFW", "ModernGL", "GLMakie"] [compat] CEnum = "0.4, 0.5" -CImGuiPack_jll = "0.5.0" +CImGuiPack_jll = "0.6.0" CSyntax = "0.4" Compat = "4.16.0" DocStringExtensions = "0.9.3" diff --git a/docs/src/_changelog.md b/docs/src/_changelog.md index b046d39..0e6262d 100644 --- a/docs/src/_changelog.md +++ b/docs/src/_changelog.md @@ -6,6 +6,14 @@ CurrentModule = CImGui This documents notable changes in CImGui.jl. The format is based on [Keep a Changelog](https://keepachangelog.com). +## [v3.1.0] - 2024-10-08 + +### Changed +- Updated to [Dear ImGui + 1.91.2](https://github.com/ocornut/imgui/releases/tag/v1.91.2), which + shouldn't have any breaing changes [(#152)]. We didn't bother going with + 1.91.3 because that does have some breaking changes. + ## [v3.0.0] - 2024-09-11 ### Added diff --git a/lib/aarch64-apple-darwin20.jl b/lib/aarch64-apple-darwin20.jl index 79b4751..6f0cd24 100644 --- a/lib/aarch64-apple-darwin20.jl +++ b/lib/aarch64-apple-darwin20.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/aarch64-linux-gnu.jl b/lib/aarch64-linux-gnu.jl index 0258618..6dc623f 100644 --- a/lib/aarch64-linux-gnu.jl +++ b/lib/aarch64-linux-gnu.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/aarch64-linux-musl.jl b/lib/aarch64-linux-musl.jl index 80a4f86..022dc10 100644 --- a/lib/aarch64-linux-musl.jl +++ b/lib/aarch64-linux-musl.jl @@ -644,6 +644,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -748,10 +749,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1158,6 +1160,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2785,53 +2788,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3093,7 +3065,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3146,258 +3118,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3542,11 +3516,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3670,6 +3645,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4249,15 +4225,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7441,8 +7408,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8039,18 +8006,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8747,8 +8710,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/armv7l-linux-gnueabihf.jl b/lib/armv7l-linux-gnueabihf.jl index 52e80a9..a5a57b1 100644 --- a/lib/armv7l-linux-gnueabihf.jl +++ b/lib/armv7l-linux-gnueabihf.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 96) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 100) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 104) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 105) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 106) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 107) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 108) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 105) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 106) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 107) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 108) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 109) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 112) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 116) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 120) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{13800, UInt8} + data::NTuple{10184, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5040) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5044) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5052) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5060) - f === :HoveredId && return Ptr{ImGuiID}(x + 5064) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5068) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5072) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5076) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5080) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5081) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5082) - f === :ActiveId && return Ptr{ImGuiID}(x + 5084) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5088) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5092) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5096) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5097) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5098) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5099) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5100) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5101) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5102) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5100), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5104) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5112) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5116) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5120) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5124) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5125) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5128) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5132) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5136) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5144) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5152) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5160) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5168) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5188) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7036) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7368) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7372) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7376) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7380) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7384) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7388) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7392) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7448) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7528) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7676) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7680) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7684) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7696) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7708) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7720) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7732) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7744) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7756) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7768) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7780) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7792) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7804) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7808) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7812) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7816) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7820) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7860) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 7876) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7880) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7884) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7888) - f === :NavId && return Ptr{ImGuiID}(x + 7892) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7896) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7900) - f === :NavActivateId && return Ptr{ImGuiID}(x + 7904) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7908) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7912) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7916) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7920) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7932) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7936) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7940) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7944) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7948) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7952) - f === :NavIdIsAlive && return Ptr{Bool}(x + 7960) - f === :NavMousePosDirty && return Ptr{Bool}(x + 7961) - f === :NavDisableHighlight && return Ptr{Bool}(x + 7962) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 7963) - f === :NavAnyRequest && return Ptr{Bool}(x + 7964) - f === :NavInitRequest && return Ptr{Bool}(x + 7965) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7966) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7968) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8024) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8025) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8026) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8028) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8032) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8036) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8040) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8044) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8048) - f === :NavScoringRect && return Ptr{ImRect}(x + 8052) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8068) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8084) - f === :NavTabbingDir && return Ptr{Cint}(x + 8088) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8092) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8096) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8152) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8208) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8264) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8320) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8324) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8328) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8332) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8336) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8337) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8340) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8344) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8348) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8352) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8356) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8360) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8364) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8368) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8372) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8376) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8384) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8392) - f === :DragDropActive && return Ptr{Bool}(x + 8396) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8397) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8398) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8400) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8404) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8408) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8412) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8468) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8484) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8500) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8504) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8508) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8512) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8516) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8520) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8524) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8528) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8540) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8556) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8560) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8572) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8576) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 8580) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8584) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8596) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8628) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8640) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8652) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8656) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8688) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8700) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8712) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8804) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8808) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8812) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8824) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8856) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8860) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8864) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8868) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8872) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8876) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8880) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8884) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8888) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8896) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 12616) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 12632) - f === :TempInputId && return Ptr{ImGuiID}(x + 12728) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 12732) - f === :BeginMenuDepth && return Ptr{Cint}(x + 12740) - f === :BeginComboDepth && return Ptr{Cint}(x + 12744) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 12748) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 12752) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 12756) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 12760) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 12764) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 12768) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 12772) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 12788) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 12836) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 12852) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 12854) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 12856) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 12860) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 12864) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 12868) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 12869) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 12872) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 12876) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 12880) - f === :DisabledStackSize && return Ptr{Cshort}(x + 12884) - f === :LockMarkEdited && return Ptr{Cshort}(x + 12886) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 12888) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 12892) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 12904) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 12916) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13012) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13028) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13044) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13048) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13088) - f === :SettingsLoaded && return Ptr{Bool}(x + 13092) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13096) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13100) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13112) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13124) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13136) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13148) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13160) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13164) - f === :LogEnabled && return Ptr{Bool}(x + 13212) - f === :LogType && return Ptr{ImGuiLogType}(x + 13216) - f === :LogFile && return Ptr{ImFileHandle}(x + 13220) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13224) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13236) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13240) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13244) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13248) - f === :LogDepthRef && return Ptr{Cint}(x + 13252) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13256) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13260) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13264) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13268) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13280) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 13296) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 13300) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 13301) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 13302) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 13304) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 13308) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 13309) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 13310) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 13312) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 13316) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 13320) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 13336) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 13364) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 13396) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 13456) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 13460) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 13700) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 13704) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 13708) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 13712) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 13716) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 13720) - f === :TempBuffer && return Ptr{ImVector_char}(x + 13724) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 13736) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5060) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5064) + f === :HoveredId && return Ptr{ImGuiID}(x + 5068) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5072) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5076) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5080) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5084) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5088) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5089) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5090) + f === :ActiveId && return Ptr{ImGuiID}(x + 5092) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5096) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5100) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5104) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5105) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5106) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5107) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5108) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5109) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5110) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5108), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5112) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5120) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5124) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5128) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5132) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5133) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5136) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5140) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5144) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5152) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5160) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5168) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5176) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5196) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7044) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7376) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7380) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7384) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7388) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7392) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7396) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7400) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7456) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7536) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7684) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7688) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7692) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7704) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7716) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7728) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7740) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7752) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7764) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7776) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7788) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7800) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7812) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7816) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7820) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7824) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7828) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7868) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 7884) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7888) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7892) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7896) + f === :NavId && return Ptr{ImGuiID}(x + 7900) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7904) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7908) + f === :NavActivateId && return Ptr{ImGuiID}(x + 7912) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7916) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7920) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7924) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7928) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7940) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7944) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7948) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7952) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7956) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7960) + f === :NavIdIsAlive && return Ptr{Bool}(x + 7968) + f === :NavMousePosDirty && return Ptr{Bool}(x + 7969) + f === :NavDisableHighlight && return Ptr{Bool}(x + 7970) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 7971) + f === :NavAnyRequest && return Ptr{Bool}(x + 7972) + f === :NavInitRequest && return Ptr{Bool}(x + 7973) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7974) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7976) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8032) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8033) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8034) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8036) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8040) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8044) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8048) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8052) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8056) + f === :NavScoringRect && return Ptr{ImRect}(x + 8060) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8076) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8092) + f === :NavTabbingDir && return Ptr{Cint}(x + 8096) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8100) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8104) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8160) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8216) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8272) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8328) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8332) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8336) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8340) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8344) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8345) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8348) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8352) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8356) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8360) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8364) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8368) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8372) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8376) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8380) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8384) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8392) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8400) + f === :DragDropActive && return Ptr{Bool}(x + 8404) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8405) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8406) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8408) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8412) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8416) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8420) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8476) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8492) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8508) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8512) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8516) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8520) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8524) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8528) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8532) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8536) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8548) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8564) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8568) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8580) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8584) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 8588) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8592) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8604) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8636) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8648) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8660) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8664) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8696) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8708) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8720) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8812) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8816) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8820) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8832) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8864) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8868) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8872) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8876) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8880) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8884) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8888) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8892) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8896) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8904) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 8992) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9008) + f === :TempInputId && return Ptr{ImGuiID}(x + 9104) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9108) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9116) + f === :BeginComboDepth && return Ptr{Cint}(x + 9120) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9124) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9128) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9132) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9136) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9140) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9144) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9148) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9164) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9212) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9228) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9230) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9232) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9236) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9240) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9244) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9245) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9248) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9252) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9256) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9260) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9262) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9264) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9268) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9280) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9292) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9388) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9404) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 9420) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 9424) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 9464) + f === :SettingsLoaded && return Ptr{Bool}(x + 9468) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 9472) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 9476) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 9488) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 9500) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 9512) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 9524) + f === :HookIdNext && return Ptr{ImGuiID}(x + 9536) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 9540) + f === :LogEnabled && return Ptr{Bool}(x + 9592) + f === :LogType && return Ptr{ImGuiLogType}(x + 9596) + f === :LogFile && return Ptr{ImFileHandle}(x + 9600) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 9604) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 9616) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 9620) + f === :LogLinePosY && return Ptr{Cfloat}(x + 9624) + f === :LogLineFirstItem && return Ptr{Bool}(x + 9628) + f === :LogDepthRef && return Ptr{Cint}(x + 9632) + f === :LogDepthToExpand && return Ptr{Cint}(x + 9636) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 9640) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 9644) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 9648) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 9660) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 9676) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 9680) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 9681) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 9682) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 9684) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 9688) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 9689) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 9690) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 9692) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 9696) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 9700) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 9716) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 9744) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 9776) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 9836) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 9840) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10080) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10084) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10088) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10092) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10096) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10100) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10104) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10116) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/armv7l-linux-musleabihf.jl b/lib/armv7l-linux-musleabihf.jl index 828a799..b9aa6d6 100644 --- a/lib/armv7l-linux-musleabihf.jl +++ b/lib/armv7l-linux-musleabihf.jl @@ -644,6 +644,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -748,10 +749,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 96) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 100) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 104) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 105) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 106) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 107) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 108) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 105) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 106) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 107) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 108) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 109) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 112) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 116) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 120) @@ -1158,6 +1160,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2785,53 +2788,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3093,7 +3065,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{13800, UInt8} + data::NTuple{10184, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3146,258 +3118,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5040) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5044) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5052) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5060) - f === :HoveredId && return Ptr{ImGuiID}(x + 5064) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5068) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5072) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5076) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5080) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5081) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5082) - f === :ActiveId && return Ptr{ImGuiID}(x + 5084) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5088) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5092) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5096) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5097) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5098) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5099) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5100) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5101) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5102) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5100), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5104) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5112) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5116) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5120) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5124) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5125) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5128) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5132) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5136) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5144) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5152) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5160) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5168) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5188) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7036) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7368) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7372) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7376) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7380) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7384) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7388) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7392) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7448) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7528) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7676) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7680) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7684) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7696) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7708) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7720) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7732) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7744) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7756) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7768) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7780) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7792) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7804) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7808) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7812) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7816) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7820) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7860) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 7876) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7880) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7884) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7888) - f === :NavId && return Ptr{ImGuiID}(x + 7892) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7896) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7900) - f === :NavActivateId && return Ptr{ImGuiID}(x + 7904) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7908) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7912) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7916) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7920) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7932) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7936) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7940) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7944) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7948) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7952) - f === :NavIdIsAlive && return Ptr{Bool}(x + 7960) - f === :NavMousePosDirty && return Ptr{Bool}(x + 7961) - f === :NavDisableHighlight && return Ptr{Bool}(x + 7962) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 7963) - f === :NavAnyRequest && return Ptr{Bool}(x + 7964) - f === :NavInitRequest && return Ptr{Bool}(x + 7965) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7966) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7968) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8024) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8025) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8026) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8028) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8032) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8036) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8040) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8044) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8048) - f === :NavScoringRect && return Ptr{ImRect}(x + 8052) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8068) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8084) - f === :NavTabbingDir && return Ptr{Cint}(x + 8088) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8092) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8096) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8152) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8208) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8264) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8320) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8324) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8328) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8332) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8336) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8337) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8340) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8344) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8348) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8352) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8356) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8360) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8364) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8368) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8372) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8376) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8384) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8392) - f === :DragDropActive && return Ptr{Bool}(x + 8396) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8397) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8398) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8400) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8404) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8408) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8412) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8468) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8484) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8500) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8504) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8508) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8512) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8516) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8520) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8524) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8528) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8540) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8556) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8560) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8572) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8576) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 8580) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8584) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8596) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8628) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8640) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8652) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8656) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8688) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8700) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8712) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8804) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8808) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8812) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8824) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8856) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8860) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8864) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8868) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8872) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8876) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8880) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8884) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8888) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8896) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 12616) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 12632) - f === :TempInputId && return Ptr{ImGuiID}(x + 12728) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 12732) - f === :BeginMenuDepth && return Ptr{Cint}(x + 12740) - f === :BeginComboDepth && return Ptr{Cint}(x + 12744) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 12748) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 12752) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 12756) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 12760) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 12764) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 12768) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 12772) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 12788) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 12836) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 12852) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 12854) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 12856) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 12860) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 12864) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 12868) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 12869) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 12872) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 12876) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 12880) - f === :DisabledStackSize && return Ptr{Cshort}(x + 12884) - f === :LockMarkEdited && return Ptr{Cshort}(x + 12886) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 12888) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 12892) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 12904) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 12916) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13012) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13028) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13044) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13048) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13088) - f === :SettingsLoaded && return Ptr{Bool}(x + 13092) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13096) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13100) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13112) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13124) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13136) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13148) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13160) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13164) - f === :LogEnabled && return Ptr{Bool}(x + 13212) - f === :LogType && return Ptr{ImGuiLogType}(x + 13216) - f === :LogFile && return Ptr{ImFileHandle}(x + 13220) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13224) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13236) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13240) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13244) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13248) - f === :LogDepthRef && return Ptr{Cint}(x + 13252) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13256) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13260) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13264) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13268) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13280) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 13296) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 13300) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 13301) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 13302) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 13304) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 13308) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 13309) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 13310) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 13312) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 13316) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 13320) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 13336) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 13364) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 13396) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 13456) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 13460) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 13700) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 13704) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 13708) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 13712) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 13716) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 13720) - f === :TempBuffer && return Ptr{ImVector_char}(x + 13724) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 13736) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5060) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5064) + f === :HoveredId && return Ptr{ImGuiID}(x + 5068) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5072) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5076) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5080) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5084) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5088) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5089) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5090) + f === :ActiveId && return Ptr{ImGuiID}(x + 5092) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5096) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5100) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5104) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5105) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5106) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5107) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5108) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5109) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5110) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5108), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5112) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5120) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5124) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5128) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5132) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5133) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5136) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5140) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5144) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5152) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5160) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5168) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5176) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5196) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7044) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7376) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7380) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7384) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7388) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7392) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7396) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7400) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7456) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7536) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7684) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7688) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7692) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7704) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7716) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7728) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7740) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7752) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7764) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7776) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7788) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7800) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7812) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7816) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7820) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7824) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7828) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7868) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 7884) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7888) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7892) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7896) + f === :NavId && return Ptr{ImGuiID}(x + 7900) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7904) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7908) + f === :NavActivateId && return Ptr{ImGuiID}(x + 7912) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7916) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7920) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7924) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7928) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7940) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7944) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7948) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7952) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7956) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7960) + f === :NavIdIsAlive && return Ptr{Bool}(x + 7968) + f === :NavMousePosDirty && return Ptr{Bool}(x + 7969) + f === :NavDisableHighlight && return Ptr{Bool}(x + 7970) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 7971) + f === :NavAnyRequest && return Ptr{Bool}(x + 7972) + f === :NavInitRequest && return Ptr{Bool}(x + 7973) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7974) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7976) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8032) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8033) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8034) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8036) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8040) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8044) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8048) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8052) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8056) + f === :NavScoringRect && return Ptr{ImRect}(x + 8060) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8076) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8092) + f === :NavTabbingDir && return Ptr{Cint}(x + 8096) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8100) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8104) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8160) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8216) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8272) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8328) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8332) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8336) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8340) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8344) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8345) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8348) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8352) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8356) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8360) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8364) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8368) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8372) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8376) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8380) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8384) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8392) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8400) + f === :DragDropActive && return Ptr{Bool}(x + 8404) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8405) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8406) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8408) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8412) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8416) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8420) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8476) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8492) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8508) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8512) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8516) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8520) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8524) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8528) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8532) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8536) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8548) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8564) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8568) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8580) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8584) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 8588) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8592) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8604) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8636) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8648) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8660) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8664) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8696) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8708) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8720) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8812) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8816) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8820) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8832) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8864) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8868) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8872) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8876) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8880) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8884) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8888) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8892) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8896) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8904) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 8992) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9008) + f === :TempInputId && return Ptr{ImGuiID}(x + 9104) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9108) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9116) + f === :BeginComboDepth && return Ptr{Cint}(x + 9120) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9124) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9128) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9132) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9136) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9140) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9144) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9148) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9164) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9212) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9228) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9230) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9232) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9236) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9240) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9244) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9245) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9248) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9252) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9256) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9260) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9262) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9264) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9268) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9280) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9292) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9388) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9404) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 9420) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 9424) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 9464) + f === :SettingsLoaded && return Ptr{Bool}(x + 9468) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 9472) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 9476) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 9488) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 9500) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 9512) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 9524) + f === :HookIdNext && return Ptr{ImGuiID}(x + 9536) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 9540) + f === :LogEnabled && return Ptr{Bool}(x + 9592) + f === :LogType && return Ptr{ImGuiLogType}(x + 9596) + f === :LogFile && return Ptr{ImFileHandle}(x + 9600) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 9604) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 9616) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 9620) + f === :LogLinePosY && return Ptr{Cfloat}(x + 9624) + f === :LogLineFirstItem && return Ptr{Bool}(x + 9628) + f === :LogDepthRef && return Ptr{Cint}(x + 9632) + f === :LogDepthToExpand && return Ptr{Cint}(x + 9636) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 9640) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 9644) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 9648) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 9660) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 9676) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 9680) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 9681) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 9682) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 9684) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 9688) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 9689) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 9690) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 9692) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 9696) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 9700) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 9716) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 9744) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 9776) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 9836) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 9840) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10080) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10084) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10088) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10092) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10096) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10100) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10104) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10116) return getfield(x, f) end @@ -3542,11 +3516,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3670,6 +3645,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4249,15 +4225,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7441,8 +7408,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8039,18 +8006,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8747,8 +8710,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/i686-linux-gnu.jl b/lib/i686-linux-gnu.jl index c7475b6..b027680 100644 --- a/lib/i686-linux-gnu.jl +++ b/lib/i686-linux-gnu.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 96) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 100) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 104) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 105) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 106) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 107) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 108) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 105) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 106) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 107) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 108) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 109) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 112) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 116) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 120) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{13760, UInt8} + data::NTuple{10140, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5032) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5036) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5044) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5052) - f === :HoveredId && return Ptr{ImGuiID}(x + 5056) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5060) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5064) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5068) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5072) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5073) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5074) - f === :ActiveId && return Ptr{ImGuiID}(x + 5076) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5080) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5084) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5088) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5089) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5090) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5091) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5092) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5093) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5094) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5092), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5096) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5104) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5108) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5112) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5116) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5117) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5120) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5124) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5128) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5132) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5140) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5148) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5156) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5176) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7024) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7356) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7360) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7364) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7368) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7372) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7376) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7380) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7428) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7508) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7656) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7660) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7664) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7676) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7688) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7700) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7712) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7724) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7736) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7748) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7760) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7772) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7784) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7788) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7792) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7796) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7800) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7840) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 7856) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7860) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7864) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7868) - f === :NavId && return Ptr{ImGuiID}(x + 7872) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7876) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7880) - f === :NavActivateId && return Ptr{ImGuiID}(x + 7884) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7888) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7892) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7896) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7900) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7912) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7916) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7920) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7924) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7928) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7932) - f === :NavIdIsAlive && return Ptr{Bool}(x + 7940) - f === :NavMousePosDirty && return Ptr{Bool}(x + 7941) - f === :NavDisableHighlight && return Ptr{Bool}(x + 7942) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 7943) - f === :NavAnyRequest && return Ptr{Bool}(x + 7944) - f === :NavInitRequest && return Ptr{Bool}(x + 7945) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7946) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7948) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8000) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8001) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8002) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8004) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8008) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8012) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8016) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8020) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8024) - f === :NavScoringRect && return Ptr{ImRect}(x + 8028) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8044) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8060) - f === :NavTabbingDir && return Ptr{Cint}(x + 8064) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8068) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8072) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8124) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8176) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8228) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8280) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8284) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8288) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8292) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8296) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8297) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8300) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8304) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8308) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8312) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8316) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8320) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8324) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8328) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8332) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8336) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8344) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8352) - f === :DragDropActive && return Ptr{Bool}(x + 8356) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8357) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8358) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8360) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8364) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8368) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8372) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8428) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8444) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8460) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8464) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8468) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8472) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8476) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8480) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8484) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8488) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8500) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8516) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8520) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8532) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8536) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 8540) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8544) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8556) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8588) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8600) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8612) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8616) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8648) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8660) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8672) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8764) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8768) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8772) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8784) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8816) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8820) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8824) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8828) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8832) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8836) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8840) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8844) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8848) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8856) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 12576) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 12592) - f === :TempInputId && return Ptr{ImGuiID}(x + 12688) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 12692) - f === :BeginMenuDepth && return Ptr{Cint}(x + 12700) - f === :BeginComboDepth && return Ptr{Cint}(x + 12704) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 12708) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 12712) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 12716) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 12720) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 12724) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 12728) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 12732) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 12748) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 12796) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 12812) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 12814) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 12816) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 12820) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 12824) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 12828) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 12829) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 12832) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 12836) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 12840) - f === :DisabledStackSize && return Ptr{Cshort}(x + 12844) - f === :LockMarkEdited && return Ptr{Cshort}(x + 12846) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 12848) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 12852) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 12864) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 12876) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 12972) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 12988) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13004) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13008) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13048) - f === :SettingsLoaded && return Ptr{Bool}(x + 13052) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13056) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13060) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13072) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13084) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13096) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13108) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13120) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13124) - f === :LogEnabled && return Ptr{Bool}(x + 13172) - f === :LogType && return Ptr{ImGuiLogType}(x + 13176) - f === :LogFile && return Ptr{ImFileHandle}(x + 13180) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13184) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13196) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13200) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13204) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13208) - f === :LogDepthRef && return Ptr{Cint}(x + 13212) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13216) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13220) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13224) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13228) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13240) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 13256) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 13260) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 13261) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 13262) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 13264) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 13268) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 13269) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 13270) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 13272) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 13276) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 13280) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 13296) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 13324) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 13356) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 13416) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 13420) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 13660) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 13664) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 13668) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 13672) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 13676) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 13680) - f === :TempBuffer && return Ptr{ImVector_char}(x + 13684) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 13696) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5052) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5056) + f === :HoveredId && return Ptr{ImGuiID}(x + 5060) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5064) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5068) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5072) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5076) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5080) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5081) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5082) + f === :ActiveId && return Ptr{ImGuiID}(x + 5084) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5088) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5092) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5096) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5097) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5098) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5099) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5100) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5101) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5102) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5100), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5104) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5112) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5116) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5120) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5124) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5125) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5128) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5132) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5136) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5140) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5148) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5156) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5164) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5184) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7032) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7364) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7368) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7372) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7376) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7380) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7384) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7388) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7436) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7516) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7664) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7668) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7672) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7684) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7696) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7708) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7720) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7732) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7744) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7756) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7768) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7780) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7792) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7796) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7800) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7804) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7808) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7848) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 7864) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7868) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7872) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7876) + f === :NavId && return Ptr{ImGuiID}(x + 7880) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7884) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7888) + f === :NavActivateId && return Ptr{ImGuiID}(x + 7892) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7896) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7900) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7904) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7908) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7920) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7924) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7928) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7932) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7936) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7940) + f === :NavIdIsAlive && return Ptr{Bool}(x + 7948) + f === :NavMousePosDirty && return Ptr{Bool}(x + 7949) + f === :NavDisableHighlight && return Ptr{Bool}(x + 7950) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 7951) + f === :NavAnyRequest && return Ptr{Bool}(x + 7952) + f === :NavInitRequest && return Ptr{Bool}(x + 7953) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7954) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7956) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8008) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8009) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8010) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8012) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8016) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8020) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8024) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8028) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8032) + f === :NavScoringRect && return Ptr{ImRect}(x + 8036) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8052) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8068) + f === :NavTabbingDir && return Ptr{Cint}(x + 8072) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8076) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8080) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8132) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8184) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8236) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8288) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8292) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8296) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8300) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8304) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8305) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8308) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8312) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8316) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8320) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8324) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8328) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8332) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8336) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8340) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8344) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8352) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8360) + f === :DragDropActive && return Ptr{Bool}(x + 8364) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8365) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8366) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8368) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8372) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8376) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8380) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8436) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8452) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8468) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8472) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8476) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8480) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8484) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8488) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8492) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8496) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8508) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8524) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8528) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8540) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8544) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 8548) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8552) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8564) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8596) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8608) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8620) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8624) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8656) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8668) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8680) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8772) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8776) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8780) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8792) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8824) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8828) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8832) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8836) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8840) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8844) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8848) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8852) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8856) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8864) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 8952) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 8968) + f === :TempInputId && return Ptr{ImGuiID}(x + 9064) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9068) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9076) + f === :BeginComboDepth && return Ptr{Cint}(x + 9080) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9084) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9088) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9092) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9096) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9100) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9104) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9108) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9124) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9172) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9188) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9190) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9192) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9196) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9200) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9204) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9205) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9208) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9212) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9216) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9220) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9222) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9224) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9228) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9240) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9252) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9348) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9364) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 9380) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 9384) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 9424) + f === :SettingsLoaded && return Ptr{Bool}(x + 9428) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 9432) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 9436) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 9448) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 9460) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 9472) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 9484) + f === :HookIdNext && return Ptr{ImGuiID}(x + 9496) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 9500) + f === :LogEnabled && return Ptr{Bool}(x + 9552) + f === :LogType && return Ptr{ImGuiLogType}(x + 9556) + f === :LogFile && return Ptr{ImFileHandle}(x + 9560) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 9564) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 9576) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 9580) + f === :LogLinePosY && return Ptr{Cfloat}(x + 9584) + f === :LogLineFirstItem && return Ptr{Bool}(x + 9588) + f === :LogDepthRef && return Ptr{Cint}(x + 9592) + f === :LogDepthToExpand && return Ptr{Cint}(x + 9596) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 9600) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 9604) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 9608) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 9620) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 9636) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 9640) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 9641) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 9642) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 9644) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 9648) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 9649) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 9650) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 9652) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 9656) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 9660) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 9676) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 9704) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 9736) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 9796) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 9800) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10040) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10044) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10048) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10052) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10056) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10060) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10064) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10076) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/i686-linux-musl.jl b/lib/i686-linux-musl.jl index c5301eb..84a8b7b 100644 --- a/lib/i686-linux-musl.jl +++ b/lib/i686-linux-musl.jl @@ -644,6 +644,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -748,10 +749,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 96) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 100) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 104) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 105) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 106) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 107) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 108) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 105) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 106) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 107) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 108) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 109) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 112) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 116) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 120) @@ -1158,6 +1160,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2785,53 +2788,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3093,7 +3065,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{13760, UInt8} + data::NTuple{10140, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3146,258 +3118,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5032) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5036) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5044) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5052) - f === :HoveredId && return Ptr{ImGuiID}(x + 5056) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5060) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5064) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5068) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5072) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5073) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5074) - f === :ActiveId && return Ptr{ImGuiID}(x + 5076) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5080) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5084) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5088) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5089) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5090) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5091) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5092) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5093) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5094) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5092), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5096) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5104) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5108) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5112) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5116) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5117) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5120) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5124) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5128) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5132) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5140) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5148) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5156) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5176) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7024) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7356) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7360) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7364) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7368) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7372) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7376) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7380) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7428) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7508) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7656) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7660) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7664) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7676) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7688) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7700) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7712) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7724) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7736) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7748) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7760) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7772) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7784) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7788) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7792) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7796) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7800) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7840) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 7856) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7860) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7864) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7868) - f === :NavId && return Ptr{ImGuiID}(x + 7872) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7876) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7880) - f === :NavActivateId && return Ptr{ImGuiID}(x + 7884) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7888) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7892) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7896) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7900) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7912) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7916) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7920) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7924) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7928) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7932) - f === :NavIdIsAlive && return Ptr{Bool}(x + 7940) - f === :NavMousePosDirty && return Ptr{Bool}(x + 7941) - f === :NavDisableHighlight && return Ptr{Bool}(x + 7942) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 7943) - f === :NavAnyRequest && return Ptr{Bool}(x + 7944) - f === :NavInitRequest && return Ptr{Bool}(x + 7945) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7946) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7948) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8000) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8001) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8002) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8004) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8008) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8012) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8016) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8020) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8024) - f === :NavScoringRect && return Ptr{ImRect}(x + 8028) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8044) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8060) - f === :NavTabbingDir && return Ptr{Cint}(x + 8064) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8068) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8072) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8124) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8176) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8228) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8280) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8284) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8288) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8292) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8296) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8297) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8300) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8304) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8308) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8312) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8316) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8320) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8324) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8328) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8332) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8336) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8344) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8352) - f === :DragDropActive && return Ptr{Bool}(x + 8356) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8357) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8358) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8360) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8364) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8368) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8372) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8428) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8444) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8460) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8464) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8468) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8472) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8476) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8480) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8484) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8488) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8500) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8516) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8520) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8532) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8536) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 8540) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8544) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8556) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8588) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8600) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8612) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8616) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8648) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8660) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8672) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8764) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8768) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8772) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8784) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8816) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8820) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8824) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8828) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8832) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8836) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8840) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8844) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8848) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8856) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 12576) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 12592) - f === :TempInputId && return Ptr{ImGuiID}(x + 12688) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 12692) - f === :BeginMenuDepth && return Ptr{Cint}(x + 12700) - f === :BeginComboDepth && return Ptr{Cint}(x + 12704) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 12708) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 12712) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 12716) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 12720) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 12724) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 12728) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 12732) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 12748) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 12796) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 12812) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 12814) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 12816) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 12820) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 12824) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 12828) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 12829) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 12832) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 12836) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 12840) - f === :DisabledStackSize && return Ptr{Cshort}(x + 12844) - f === :LockMarkEdited && return Ptr{Cshort}(x + 12846) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 12848) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 12852) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 12864) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 12876) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 12972) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 12988) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13004) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13008) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13048) - f === :SettingsLoaded && return Ptr{Bool}(x + 13052) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13056) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13060) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13072) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13084) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13096) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13108) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13120) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13124) - f === :LogEnabled && return Ptr{Bool}(x + 13172) - f === :LogType && return Ptr{ImGuiLogType}(x + 13176) - f === :LogFile && return Ptr{ImFileHandle}(x + 13180) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13184) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13196) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13200) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13204) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13208) - f === :LogDepthRef && return Ptr{Cint}(x + 13212) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13216) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13220) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13224) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13228) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13240) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 13256) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 13260) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 13261) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 13262) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 13264) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 13268) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 13269) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 13270) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 13272) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 13276) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 13280) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 13296) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 13324) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 13356) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 13416) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 13420) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 13660) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 13664) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 13668) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 13672) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 13676) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 13680) - f === :TempBuffer && return Ptr{ImVector_char}(x + 13684) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 13696) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5052) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5056) + f === :HoveredId && return Ptr{ImGuiID}(x + 5060) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5064) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5068) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5072) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5076) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5080) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5081) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5082) + f === :ActiveId && return Ptr{ImGuiID}(x + 5084) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5088) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5092) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5096) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5097) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5098) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5099) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5100) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5101) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5102) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5100), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5104) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5112) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5116) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5120) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5124) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5125) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5128) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5132) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5136) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5140) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5148) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5156) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5164) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5184) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7032) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7364) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7368) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7372) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7376) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7380) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7384) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7388) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7436) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7516) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7664) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7668) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7672) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7684) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7696) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7708) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7720) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7732) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7744) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7756) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7768) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7780) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7792) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7796) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7800) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7804) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7808) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7848) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 7864) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7868) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7872) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7876) + f === :NavId && return Ptr{ImGuiID}(x + 7880) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7884) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7888) + f === :NavActivateId && return Ptr{ImGuiID}(x + 7892) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7896) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7900) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7904) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7908) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7920) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7924) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7928) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7932) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7936) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7940) + f === :NavIdIsAlive && return Ptr{Bool}(x + 7948) + f === :NavMousePosDirty && return Ptr{Bool}(x + 7949) + f === :NavDisableHighlight && return Ptr{Bool}(x + 7950) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 7951) + f === :NavAnyRequest && return Ptr{Bool}(x + 7952) + f === :NavInitRequest && return Ptr{Bool}(x + 7953) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7954) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7956) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8008) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8009) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8010) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8012) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8016) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8020) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8024) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8028) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8032) + f === :NavScoringRect && return Ptr{ImRect}(x + 8036) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8052) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8068) + f === :NavTabbingDir && return Ptr{Cint}(x + 8072) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8076) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8080) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8132) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8184) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8236) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8288) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8292) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8296) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8300) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8304) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8305) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8308) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8312) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8316) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8320) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8324) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8328) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8332) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8336) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8340) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8344) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8352) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8360) + f === :DragDropActive && return Ptr{Bool}(x + 8364) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8365) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8366) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8368) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8372) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8376) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8380) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8436) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8452) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8468) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8472) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8476) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8480) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8484) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8488) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8492) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8496) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8508) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8524) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8528) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8540) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8544) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 8548) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8552) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8564) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8596) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8608) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8620) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8624) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8656) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8668) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8680) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8772) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8776) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8780) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8792) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8824) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8828) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8832) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8836) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8840) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8844) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8848) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8852) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8856) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8864) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 8952) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 8968) + f === :TempInputId && return Ptr{ImGuiID}(x + 9064) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9068) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9076) + f === :BeginComboDepth && return Ptr{Cint}(x + 9080) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9084) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9088) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9092) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9096) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9100) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9104) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9108) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9124) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9172) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9188) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9190) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9192) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9196) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9200) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9204) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9205) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9208) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9212) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9216) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9220) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9222) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9224) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9228) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9240) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9252) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9348) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9364) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 9380) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 9384) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 9424) + f === :SettingsLoaded && return Ptr{Bool}(x + 9428) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 9432) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 9436) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 9448) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 9460) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 9472) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 9484) + f === :HookIdNext && return Ptr{ImGuiID}(x + 9496) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 9500) + f === :LogEnabled && return Ptr{Bool}(x + 9552) + f === :LogType && return Ptr{ImGuiLogType}(x + 9556) + f === :LogFile && return Ptr{ImFileHandle}(x + 9560) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 9564) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 9576) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 9580) + f === :LogLinePosY && return Ptr{Cfloat}(x + 9584) + f === :LogLineFirstItem && return Ptr{Bool}(x + 9588) + f === :LogDepthRef && return Ptr{Cint}(x + 9592) + f === :LogDepthToExpand && return Ptr{Cint}(x + 9596) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 9600) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 9604) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 9608) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 9620) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 9636) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 9640) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 9641) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 9642) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 9644) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 9648) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 9649) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 9650) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 9652) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 9656) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 9660) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 9676) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 9704) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 9736) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 9796) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 9800) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10040) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10044) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10048) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10052) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10056) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10060) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10064) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10076) return getfield(x, f) end @@ -3542,11 +3516,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3670,6 +3645,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4249,15 +4225,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7441,8 +7408,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8039,18 +8006,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8747,8 +8710,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/i686-w64-mingw32.jl b/lib/i686-w64-mingw32.jl index 28aaac1..db3431a 100644 --- a/lib/i686-w64-mingw32.jl +++ b/lib/i686-w64-mingw32.jl @@ -660,6 +660,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -764,10 +765,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 96) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 100) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 104) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 105) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 106) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 107) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 108) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 105) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 106) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 107) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 108) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 109) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 112) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 116) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 120) @@ -1174,6 +1176,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2801,53 +2804,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3109,7 +3081,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{13808, UInt8} + data::NTuple{10184, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3162,258 +3134,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5040) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5044) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5052) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5060) - f === :HoveredId && return Ptr{ImGuiID}(x + 5064) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5068) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5072) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5076) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5080) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5081) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5082) - f === :ActiveId && return Ptr{ImGuiID}(x + 5084) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5088) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5092) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5096) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5097) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5098) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5099) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5100) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5101) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5102) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5104), 0, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5108) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5116) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5120) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5124) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5128) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5129) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5132) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5136) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5140) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5144) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5152) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5160) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5168) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5188) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7036) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7368) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7372) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7376) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7380) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7384) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7388) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7392) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7448) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7528) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7676) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7680) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7684) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7696) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7708) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7720) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7732) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7744) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7756) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7768) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7780) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7792) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7804) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7808) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7812) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7816) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7820) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7860) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 7876) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7880) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7884) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7888) - f === :NavId && return Ptr{ImGuiID}(x + 7892) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7896) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7900) - f === :NavActivateId && return Ptr{ImGuiID}(x + 7904) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7908) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7912) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7916) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7920) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7932) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7936) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7940) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7944) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7948) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7952) - f === :NavIdIsAlive && return Ptr{Bool}(x + 7960) - f === :NavMousePosDirty && return Ptr{Bool}(x + 7961) - f === :NavDisableHighlight && return Ptr{Bool}(x + 7962) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 7963) - f === :NavAnyRequest && return Ptr{Bool}(x + 7964) - f === :NavInitRequest && return Ptr{Bool}(x + 7965) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7966) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7968) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8024) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8025) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8026) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8028) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8032) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8036) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8040) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8044) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8048) - f === :NavScoringRect && return Ptr{ImRect}(x + 8052) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8068) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8084) - f === :NavTabbingDir && return Ptr{Cint}(x + 8088) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8092) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8096) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8152) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8208) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8264) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8320) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8324) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8328) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8332) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8336) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8337) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8340) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8344) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8348) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8352) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8356) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8360) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8364) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8368) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8372) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8376) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8384) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8392) - f === :DragDropActive && return Ptr{Bool}(x + 8396) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8397) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8398) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8400) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8404) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8408) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8412) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8468) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8484) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8500) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8504) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8508) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8512) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8516) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8520) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8524) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8528) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8540) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8556) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8560) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8572) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8576) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 8580) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8584) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8596) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8628) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8640) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8652) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8656) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8688) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8700) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8712) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8808) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8812) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8816) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8828) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8860) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8864) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8868) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8872) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8876) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8880) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8884) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8888) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8892) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8900) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 12620) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 12636) - f === :TempInputId && return Ptr{ImGuiID}(x + 12732) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 12736) - f === :BeginMenuDepth && return Ptr{Cint}(x + 12744) - f === :BeginComboDepth && return Ptr{Cint}(x + 12748) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 12752) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 12756) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 12760) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 12764) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 12768) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 12772) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 12776) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 12792) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 12840) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 12856) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 12858) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 12860) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 12864) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 12868) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 12872) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 12873) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 12876) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 12880) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 12884) - f === :DisabledStackSize && return Ptr{Cshort}(x + 12888) - f === :LockMarkEdited && return Ptr{Cshort}(x + 12890) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 12892) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 12896) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 12908) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 12920) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13016) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13032) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13048) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13052) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13092) - f === :SettingsLoaded && return Ptr{Bool}(x + 13096) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13100) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13104) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13116) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13128) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13140) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13152) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13164) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13168) - f === :LogEnabled && return Ptr{Bool}(x + 13216) - f === :LogType && return Ptr{ImGuiLogType}(x + 13220) - f === :LogFile && return Ptr{ImFileHandle}(x + 13224) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13228) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13240) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13244) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13248) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13252) - f === :LogDepthRef && return Ptr{Cint}(x + 13256) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13260) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13264) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13268) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13272) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13284) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 13300) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 13304) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 13305) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 13306) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 13308) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 13312) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 13313) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 13314) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 13316) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 13320) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 13324) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 13340) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 13368) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 13400) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 13460) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 13464) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 13704) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 13708) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 13712) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 13716) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 13720) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 13724) - f === :TempBuffer && return Ptr{ImVector_char}(x + 13728) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 13740) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5060) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5064) + f === :HoveredId && return Ptr{ImGuiID}(x + 5068) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5072) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5076) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5080) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5084) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5088) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5089) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5090) + f === :ActiveId && return Ptr{ImGuiID}(x + 5092) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5096) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5100) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5104) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5105) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5106) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5107) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5108) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5109) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5110) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5112), 0, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5116) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5124) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5128) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5132) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5136) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5137) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5140) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5144) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5148) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5152) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5160) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5168) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5176) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5196) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7044) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7376) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7380) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7384) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7388) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7392) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7396) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7400) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7456) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7536) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7684) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7688) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7692) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 7704) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 7716) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7728) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 7740) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 7752) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7764) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 7776) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 7788) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 7800) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7812) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7816) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 7820) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 7824) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 7828) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 7868) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 7884) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 7888) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 7892) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 7896) + f === :NavId && return Ptr{ImGuiID}(x + 7900) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 7904) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 7908) + f === :NavActivateId && return Ptr{ImGuiID}(x + 7912) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 7916) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 7920) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7924) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 7928) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 7940) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 7944) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 7948) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 7952) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 7956) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 7960) + f === :NavIdIsAlive && return Ptr{Bool}(x + 7968) + f === :NavMousePosDirty && return Ptr{Bool}(x + 7969) + f === :NavDisableHighlight && return Ptr{Bool}(x + 7970) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 7971) + f === :NavAnyRequest && return Ptr{Bool}(x + 7972) + f === :NavInitRequest && return Ptr{Bool}(x + 7973) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 7974) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 7976) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8032) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8033) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8034) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8036) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8040) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8044) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8048) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8052) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8056) + f === :NavScoringRect && return Ptr{ImRect}(x + 8060) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8076) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8092) + f === :NavTabbingDir && return Ptr{Cint}(x + 8096) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8100) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8104) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8160) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8216) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8272) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8328) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8332) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8336) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8340) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8344) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8345) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8348) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8352) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8356) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8360) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8364) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8368) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8372) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8376) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8380) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8384) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8392) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8400) + f === :DragDropActive && return Ptr{Bool}(x + 8404) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8405) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8406) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8408) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8412) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8416) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8420) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8476) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8492) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8508) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8512) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8516) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8520) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8524) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8528) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8532) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8536) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8548) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8564) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8568) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 8580) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 8584) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 8588) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 8592) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 8604) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 8636) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 8648) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 8660) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 8664) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 8696) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 8708) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 8720) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 8816) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 8820) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 8824) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 8836) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 8868) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 8872) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 8876) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 8880) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 8884) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 8888) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 8892) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 8896) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 8900) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 8908) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 8996) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9012) + f === :TempInputId && return Ptr{ImGuiID}(x + 9108) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9112) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9120) + f === :BeginComboDepth && return Ptr{Cint}(x + 9124) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9128) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9132) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9136) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9140) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9144) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9148) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9152) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9168) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9216) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9232) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9234) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9236) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9240) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9244) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9248) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9249) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9252) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9256) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9260) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9264) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9266) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9268) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9272) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9284) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9296) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9392) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9408) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 9424) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 9428) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 9468) + f === :SettingsLoaded && return Ptr{Bool}(x + 9472) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 9476) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 9480) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 9492) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 9504) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 9516) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 9528) + f === :HookIdNext && return Ptr{ImGuiID}(x + 9540) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 9544) + f === :LogEnabled && return Ptr{Bool}(x + 9596) + f === :LogType && return Ptr{ImGuiLogType}(x + 9600) + f === :LogFile && return Ptr{ImFileHandle}(x + 9604) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 9608) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 9620) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 9624) + f === :LogLinePosY && return Ptr{Cfloat}(x + 9628) + f === :LogLineFirstItem && return Ptr{Bool}(x + 9632) + f === :LogDepthRef && return Ptr{Cint}(x + 9636) + f === :LogDepthToExpand && return Ptr{Cint}(x + 9640) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 9644) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 9648) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 9652) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 9664) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 9680) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 9684) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 9685) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 9686) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 9688) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 9692) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 9693) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 9694) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 9696) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 9700) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 9704) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 9720) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 9748) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 9780) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 9840) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 9844) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10084) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10088) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10092) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10096) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10100) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10104) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10108) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10120) return getfield(x, f) end @@ -3558,11 +3532,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3686,6 +3661,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4265,15 +4241,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7457,8 +7424,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8055,18 +8022,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8763,8 +8726,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/powerpc64le-linux-gnu.jl b/lib/powerpc64le-linux-gnu.jl index 0258618..6dc623f 100644 --- a/lib/powerpc64le-linux-gnu.jl +++ b/lib/powerpc64le-linux-gnu.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/x86_64-apple-darwin14.jl b/lib/x86_64-apple-darwin14.jl index 79b4751..6f0cd24 100644 --- a/lib/x86_64-apple-darwin14.jl +++ b/lib/x86_64-apple-darwin14.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/x86_64-linux-gnu.jl b/lib/x86_64-linux-gnu.jl index 0258618..6dc623f 100644 --- a/lib/x86_64-linux-gnu.jl +++ b/lib/x86_64-linux-gnu.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/x86_64-linux-musl.jl b/lib/x86_64-linux-musl.jl index 80a4f86..022dc10 100644 --- a/lib/x86_64-linux-musl.jl +++ b/lib/x86_64-linux-musl.jl @@ -644,6 +644,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -748,10 +749,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1158,6 +1160,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2785,53 +2788,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3093,7 +3065,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3146,258 +3118,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3542,11 +3516,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3670,6 +3645,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4249,15 +4225,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7441,8 +7408,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8039,18 +8006,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8747,8 +8710,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/x86_64-unknown-freebsd13.2.jl b/lib/x86_64-unknown-freebsd13.2.jl index 6ea7868..f7e4acb 100644 --- a/lib/x86_64-unknown-freebsd13.2.jl +++ b/lib/x86_64-unknown-freebsd13.2.jl @@ -646,6 +646,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -750,10 +751,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1160,6 +1162,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2787,53 +2790,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3095,7 +3067,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14536, UInt8} + data::NTuple{10920, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3148,258 +3120,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5372), 24, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5376) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5384) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5392) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5396) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5400) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5401) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5408) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5416) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5420) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5424) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5440) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5448) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5468) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7320) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7664) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7668) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7672) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7676) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7680) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7684) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7688) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7744) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7824) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7984) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7988) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 7992) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8008) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8024) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8040) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8056) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8072) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8088) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8120) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8136) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8152) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8176) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8184) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8232) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8248) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8252) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8256) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8264) - f === :NavId && return Ptr{ImGuiID}(x + 8272) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8276) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8280) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8284) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8288) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8296) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8304) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8320) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8324) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8328) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8332) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8336) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8344) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8352) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8353) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8354) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8355) - f === :NavAnyRequest && return Ptr{Bool}(x + 8356) - f === :NavInitRequest && return Ptr{Bool}(x + 8357) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8358) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8360) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8416) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8417) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8418) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8420) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8424) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8428) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8432) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8436) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavScoringRect && return Ptr{ImRect}(x + 8444) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8460) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8476) - f === :NavTabbingDir && return Ptr{Cint}(x + 8480) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8484) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8488) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8544) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8600) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8656) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8712) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8716) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8724) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8728) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8729) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8732) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8736) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8744) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8768) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8772) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8776) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8780) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8784) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8792) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8800) - f === :DragDropActive && return Ptr{Bool}(x + 8804) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8805) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8806) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8808) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8812) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8816) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8824) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8888) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8904) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8920) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8924) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8928) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8932) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8936) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8940) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8944) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8952) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8968) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8984) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 8992) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9008) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9016) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9020) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9024) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9040) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9080) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9096) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9112) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9120) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9160) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9176) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9192) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9296) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9304) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9312) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9328) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9368) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9372) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9376) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9380) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9384) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9388) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9392) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9396) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9400) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9408) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13152) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13176) - f === :TempInputId && return Ptr{ImGuiID}(x + 13296) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13300) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13308) - f === :BeginComboDepth && return Ptr{Cint}(x + 13312) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13316) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13320) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13324) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13328) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13332) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13336) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13340) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13356) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13404) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13420) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13422) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13424) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13428) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13432) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13436) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13437) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13444) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13448) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13452) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13454) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13456) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13464) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13480) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13496) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13600) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13616) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13632) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13640) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13696) - f === :SettingsLoaded && return Ptr{Bool}(x + 13704) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13708) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13712) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13728) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13744) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13760) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13776) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13792) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13800) - f === :LogEnabled && return Ptr{Bool}(x + 13896) - f === :LogType && return Ptr{ImGuiLogType}(x + 13900) - f === :LogFile && return Ptr{ImFileHandle}(x + 13904) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13912) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13928) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13944) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13948) - f === :LogDepthRef && return Ptr{Cint}(x + 13952) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13956) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13960) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13964) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13968) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13984) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14008) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14012) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14013) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14014) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14016) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14020) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14021) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14022) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14024) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14028) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14032) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14048) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14080) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14120) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14184) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14192) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14432) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14436) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14440) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14444) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14448) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14452) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14456) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14472) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5380), 24, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5384) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) + f === :NavId && return Ptr{ImGuiID}(x + 8280) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) + f === :NavAnyRequest && return Ptr{Bool}(x + 8364) + f === :NavInitRequest && return Ptr{Bool}(x + 8365) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavScoringRect && return Ptr{ImRect}(x + 8452) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) + f === :NavTabbingDir && return Ptr{Cint}(x + 8488) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) + f === :DragDropActive && return Ptr{Bool}(x + 8812) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9528) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9552) + f === :TempInputId && return Ptr{ImGuiID}(x + 9672) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9676) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9684) + f === :BeginComboDepth && return Ptr{Cint}(x + 9688) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9692) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9696) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9700) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9704) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9708) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9712) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9716) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9732) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9780) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9796) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9798) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9800) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9804) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9808) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9812) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9813) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9820) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9824) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9828) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9830) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9832) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9840) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9856) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9872) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9976) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 9992) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10008) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10016) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10072) + f === :SettingsLoaded && return Ptr{Bool}(x + 10080) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10084) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10088) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10104) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10120) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10136) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10152) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10168) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10176) + f === :LogEnabled && return Ptr{Bool}(x + 10280) + f === :LogType && return Ptr{ImGuiLogType}(x + 10284) + f === :LogFile && return Ptr{ImFileHandle}(x + 10288) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10296) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10312) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10328) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10332) + f === :LogDepthRef && return Ptr{Cint}(x + 10336) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10340) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10344) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10348) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10352) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10368) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10392) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10396) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10397) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10398) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10400) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10404) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10405) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10406) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10408) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10412) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10416) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10432) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10464) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10504) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10568) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10576) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10816) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10820) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10824) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10828) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10832) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10836) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10840) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10856) return getfield(x, f) end @@ -3544,11 +3518,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3672,6 +3647,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4251,15 +4227,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7443,8 +7410,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8041,18 +8008,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8749,8 +8712,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/lib/x86_64-w64-mingw32.jl b/lib/x86_64-w64-mingw32.jl index 34e8d48..4e4a883 100644 --- a/lib/x86_64-w64-mingw32.jl +++ b/lib/x86_64-w64-mingw32.jl @@ -660,6 +660,7 @@ struct ImGuiIO KeyRepeatDelay::Cfloat KeyRepeatRate::Cfloat ConfigDebugIsDebuggerPresent::Bool + ConfigDebugHighlightIdConflicts::Bool ConfigDebugBeginReturnValueOnce::Bool ConfigDebugBeginReturnValueLoop::Bool ConfigDebugIgnoreFocusLoss::Bool @@ -764,10 +765,11 @@ function Base.getproperty(x::Ptr{ImGuiIO}, f::Symbol) f === :KeyRepeatDelay && return Ptr{Cfloat}(x + 116) f === :KeyRepeatRate && return Ptr{Cfloat}(x + 120) f === :ConfigDebugIsDebuggerPresent && return Ptr{Bool}(x + 124) - f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 125) - f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 126) - f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 127) - f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 128) + f === :ConfigDebugHighlightIdConflicts && return Ptr{Bool}(x + 125) + f === :ConfigDebugBeginReturnValueOnce && return Ptr{Bool}(x + 126) + f === :ConfigDebugBeginReturnValueLoop && return Ptr{Bool}(x + 127) + f === :ConfigDebugIgnoreFocusLoss && return Ptr{Bool}(x + 128) + f === :ConfigDebugIniSettings && return Ptr{Bool}(x + 129) f === :BackendPlatformName && return Ptr{Ptr{Cchar}}(x + 136) f === :BackendRendererName && return Ptr{Ptr{Cchar}}(x + 144) f === :BackendPlatformUserData && return Ptr{Ptr{Cvoid}}(x + 152) @@ -1174,6 +1176,7 @@ struct ImGuiViewportP LastFocusedStampCount::Cint LastNameHash::ImGuiID LastPos::ImVec2 + LastSize::ImVec2 Alpha::Cfloat LastAlpha::Cfloat LastFocusedHadNavWindow::Bool @@ -2801,53 +2804,22 @@ end const ImGuiMouseCursor = Cint -struct StbUndoRecord - where::Cint - insert_length::Cint - delete_length::Cint - char_storage::Cint -end - -struct StbUndoState - undo_rec::NTuple{99, StbUndoRecord} - undo_char::NTuple{999, ImWchar} - undo_point::Cshort - redo_point::Cshort - undo_char_point::Cint - redo_char_point::Cint -end - -struct STB_TexteditState - cursor::Cint - select_start::Cint - select_end::Cint - insert_mode::Cuchar - row_count_per_page::Cint - cursor_at_end_of_line::Cuchar - initialized::Cuchar - has_preferred_x::Cuchar - single_line::Cuchar - padding1::Cuchar - padding2::Cuchar - padding3::Cuchar - preferred_x::Cfloat - undostate::StbUndoState -end +mutable struct STB_TexteditState end + +const ImStbTexteditState = STB_TexteditState const ImGuiInputTextFlags = Cint struct ImGuiInputTextState Ctx::Ptr{Cvoid} # Ctx::Ptr{ImGuiContext} + Stb::Ptr{ImStbTexteditState} ID::ImGuiID - CurLenW::Cint CurLenA::Cint - TextW::ImVector_ImWchar TextA::ImVector_char InitialTextA::ImVector_char - TextAIsValid::Bool + CallbackTextBackup::ImVector_char BufCapacityA::Cint Scroll::ImVec2 - Stb::STB_TexteditState CursorAnim::Cfloat CursorFollow::Bool SelectedAllMouseLock::Bool @@ -3109,7 +3081,7 @@ struct ImGuiDebugAllocInfo end struct ImGuiContext - data::NTuple{14544, UInt8} + data::NTuple{10928, UInt8} end function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) @@ -3162,258 +3134,260 @@ function Base.getproperty(x::Ptr{ImGuiContext}, f::Symbol) f === :WheelingWindowReleaseTimer && return Ptr{Cfloat}(x + 5312) f === :WheelingWindowWheelRemainder && return Ptr{ImVec2}(x + 5316) f === :WheelingAxisAvg && return Ptr{ImVec2}(x + 5324) - f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5332) - f === :HoveredId && return Ptr{ImGuiID}(x + 5336) - f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5340) - f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5344) - f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5348) - f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5352) - f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5353) - f === :ItemUnclipByLog && return Ptr{Bool}(x + 5354) - f === :ActiveId && return Ptr{ImGuiID}(x + 5356) - f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5360) - f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5364) - f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5368) - f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5369) - f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5370) - f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5371) - f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5372) - f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5373) - f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5374) - f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5376), 0, 8) - f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5380) - f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5392) - f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5400) - f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5404) - f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5408) - f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5409) - f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5416) - f === :LastActiveId && return Ptr{ImGuiID}(x + 5424) - f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5428) - f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5432) - f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5440) - f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5448) - f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5456) - f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5476) - f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7328) - f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7672) - f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7676) - f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7680) - f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7684) - f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7688) - f === :DebugLocateId && return Ptr{ImGuiID}(x + 7692) - f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7696) - f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7752) - f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7832) - f === :DebugShowGroupRects && return Ptr{Bool}(x + 7992) - f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 7996) - f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8000) - f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8016) - f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8032) - f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8048) - f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8064) - f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8080) - f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8096) - f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8112) - f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8128) - f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8144) - f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8160) - f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) - f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) - f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8184) - f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8192) - f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8240) - f === :ViewportCreatedCount && return Ptr{Cint}(x + 8256) - f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8260) - f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8264) - f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8272) - f === :NavId && return Ptr{ImGuiID}(x + 8280) - f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8284) - f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8288) - f === :NavActivateId && return Ptr{ImGuiID}(x + 8292) - f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8296) - f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8300) - f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8304) - f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8312) - f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8328) - f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8332) - f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8336) - f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8340) - f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8344) - f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8352) - f === :NavIdIsAlive && return Ptr{Bool}(x + 8360) - f === :NavMousePosDirty && return Ptr{Bool}(x + 8361) - f === :NavDisableHighlight && return Ptr{Bool}(x + 8362) - f === :NavDisableMouseHover && return Ptr{Bool}(x + 8363) - f === :NavAnyRequest && return Ptr{Bool}(x + 8364) - f === :NavInitRequest && return Ptr{Bool}(x + 8365) - f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8366) - f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8368) - f === :NavMoveSubmitted && return Ptr{Bool}(x + 8424) - f === :NavMoveScoringItems && return Ptr{Bool}(x + 8425) - f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8426) - f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8428) - f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8432) - f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8436) - f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8440) - f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8444) - f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8448) - f === :NavScoringRect && return Ptr{ImRect}(x + 8452) - f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8468) - f === :NavScoringDebugCount && return Ptr{Cint}(x + 8484) - f === :NavTabbingDir && return Ptr{Cint}(x + 8488) - f === :NavTabbingCounter && return Ptr{Cint}(x + 8492) - f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8496) - f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8552) - f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8608) - f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8664) - f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8720) - f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8724) - f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8728) - f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8732) - f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8736) - f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8737) - f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8740) - f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8744) - f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8752) - f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8760) - f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8768) - f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8776) - f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8780) - f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8784) - f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8788) - f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8792) - f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8800) - f === :DimBgRatio && return Ptr{Cfloat}(x + 8808) - f === :DragDropActive && return Ptr{Bool}(x + 8812) - f === :DragDropWithinSource && return Ptr{Bool}(x + 8813) - f === :DragDropWithinTarget && return Ptr{Bool}(x + 8814) - f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8816) - f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8820) - f === :DragDropMouseButton && return Ptr{Cint}(x + 8824) - f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8832) - f === :DragDropTargetRect && return Ptr{ImRect}(x + 8896) - f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8912) - f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8928) - f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8932) - f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8936) - f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8940) - f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8944) - f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8948) - f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8952) - f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8960) - f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8976) - f === :ClipperTempDataStacked && return Ptr{Cint}(x + 8992) - f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9000) - f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9016) - f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9024) - f === :TablesTempDataStacked && return Ptr{Cint}(x + 9028) - f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9032) - f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9048) - f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9088) - f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9104) - f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9120) - f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9128) - f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9168) - f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9184) - f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9200) - f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9304) - f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9312) - f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9320) - f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9336) - f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9376) - f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9380) - f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9384) - f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9388) - f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9392) - f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9396) - f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9400) - f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9404) - f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9408) - f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9416) - f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 13160) - f === :InputTextPasswordFont && return Ptr{ImFont}(x + 13184) - f === :TempInputId && return Ptr{ImGuiID}(x + 13304) - f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 13308) - f === :BeginMenuDepth && return Ptr{Cint}(x + 13316) - f === :BeginComboDepth && return Ptr{Cint}(x + 13320) - f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 13324) - f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 13328) - f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 13332) - f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 13336) - f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 13340) - f === :ColorEditSavedColor && return Ptr{ImU32}(x + 13344) - f === :ColorPickerRef && return Ptr{ImVec4}(x + 13348) - f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 13364) - f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 13412) - f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 13428) - f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 13430) - f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 13432) - f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 13436) - f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 13440) - f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 13444) - f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 13445) - f === :DragCurrentAccum && return Ptr{Cfloat}(x + 13448) - f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 13452) - f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 13456) - f === :DisabledStackSize && return Ptr{Cshort}(x + 13460) - f === :LockMarkEdited && return Ptr{Cshort}(x + 13462) - f === :TooltipOverrideCount && return Ptr{Cshort}(x + 13464) - f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 13472) - f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 13488) - f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 13504) - f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 13608) - f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 13624) - f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 13640) - f === :DockContext && return Ptr{ImGuiDockContext}(x + 13648) - f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 13704) - f === :SettingsLoaded && return Ptr{Bool}(x + 13712) - f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 13716) - f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 13720) - f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 13736) - f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 13752) - f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 13768) - f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 13784) - f === :HookIdNext && return Ptr{ImGuiID}(x + 13800) - f === :LocalizationTable && return Ptr{NTuple{12, Ptr{Cchar}}}(x + 13808) - f === :LogEnabled && return Ptr{Bool}(x + 13904) - f === :LogType && return Ptr{ImGuiLogType}(x + 13908) - f === :LogFile && return Ptr{ImFileHandle}(x + 13912) - f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 13920) - f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 13936) - f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 13944) - f === :LogLinePosY && return Ptr{Cfloat}(x + 13952) - f === :LogLineFirstItem && return Ptr{Bool}(x + 13956) - f === :LogDepthRef && return Ptr{Cint}(x + 13960) - f === :LogDepthToExpand && return Ptr{Cint}(x + 13964) - f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 13968) - f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 13972) - f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 13976) - f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 13992) - f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 14016) - f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 14020) - f === :DebugLocateFrames && return Ptr{ImU8}(x + 14021) - f === :DebugBreakInLocateId && return Ptr{Bool}(x + 14022) - f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 14024) - f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 14028) - f === :DebugItemPickerActive && return Ptr{Bool}(x + 14029) - f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 14030) - f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 14032) - f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 14036) - f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 14040) - f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 14056) - f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 14088) - f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 14128) - f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 14192) - f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 14200) - f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 14440) - f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 14444) - f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 14448) - f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 14452) - f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 14456) - f === :WantTextInputNextFrame && return Ptr{Cint}(x + 14460) - f === :TempBuffer && return Ptr{ImVector_char}(x + 14464) - f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 14480) + f === :DebugDrawIdConflicts && return Ptr{ImGuiID}(x + 5332) + f === :DebugHookIdInfo && return Ptr{ImGuiID}(x + 5336) + f === :HoveredId && return Ptr{ImGuiID}(x + 5340) + f === :HoveredIdPreviousFrame && return Ptr{ImGuiID}(x + 5344) + f === :HoveredIdPreviousFrameItemCount && return Ptr{Cint}(x + 5348) + f === :HoveredIdTimer && return Ptr{Cfloat}(x + 5352) + f === :HoveredIdNotActiveTimer && return Ptr{Cfloat}(x + 5356) + f === :HoveredIdAllowOverlap && return Ptr{Bool}(x + 5360) + f === :HoveredIdIsDisabled && return Ptr{Bool}(x + 5361) + f === :ItemUnclipByLog && return Ptr{Bool}(x + 5362) + f === :ActiveId && return Ptr{ImGuiID}(x + 5364) + f === :ActiveIdIsAlive && return Ptr{ImGuiID}(x + 5368) + f === :ActiveIdTimer && return Ptr{Cfloat}(x + 5372) + f === :ActiveIdIsJustActivated && return Ptr{Bool}(x + 5376) + f === :ActiveIdAllowOverlap && return Ptr{Bool}(x + 5377) + f === :ActiveIdNoClearOnFocusLoss && return Ptr{Bool}(x + 5378) + f === :ActiveIdHasBeenPressedBefore && return Ptr{Bool}(x + 5379) + f === :ActiveIdHasBeenEditedBefore && return Ptr{Bool}(x + 5380) + f === :ActiveIdHasBeenEditedThisFrame && return Ptr{Bool}(x + 5381) + f === :ActiveIdFromShortcut && return Ptr{Bool}(x + 5382) + f === :ActiveIdMouseButton && return (Ptr{Cint}(x + 5384), 0, 8) + f === :ActiveIdClickOffset && return Ptr{ImVec2}(x + 5388) + f === :ActiveIdWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5400) + f === :ActiveIdSource && return Ptr{ImGuiInputSource}(x + 5408) + f === :ActiveIdPreviousFrame && return Ptr{ImGuiID}(x + 5412) + f === :ActiveIdPreviousFrameIsAlive && return Ptr{Bool}(x + 5416) + f === :ActiveIdPreviousFrameHasBeenEditedBefore && return Ptr{Bool}(x + 5417) + f === :ActiveIdPreviousFrameWindow && return Ptr{Ptr{ImGuiWindow}}(x + 5424) + f === :LastActiveId && return Ptr{ImGuiID}(x + 5432) + f === :LastActiveIdTimer && return Ptr{Cfloat}(x + 5436) + f === :LastKeyModsChangeTime && return Ptr{Cdouble}(x + 5440) + f === :LastKeyModsChangeFromNoneTime && return Ptr{Cdouble}(x + 5448) + f === :LastKeyboardKeyPressTime && return Ptr{Cdouble}(x + 5456) + f === :KeysMayBeCharInput && return Ptr{ImBitArrayForNamedKeys}(x + 5464) + f === :KeysOwnerData && return Ptr{NTuple{154, ImGuiKeyOwnerData}}(x + 5484) + f === :KeysRoutingTable && return Ptr{ImGuiKeyRoutingTable}(x + 7336) + f === :ActiveIdUsingNavDirMask && return Ptr{ImU32}(x + 7680) + f === :ActiveIdUsingAllKeyboardKeys && return Ptr{Bool}(x + 7684) + f === :DebugBreakInShortcutRouting && return Ptr{ImGuiKeyChord}(x + 7688) + f === :CurrentFocusScopeId && return Ptr{ImGuiID}(x + 7692) + f === :CurrentItemFlags && return Ptr{ImGuiItemFlags}(x + 7696) + f === :DebugLocateId && return Ptr{ImGuiID}(x + 7700) + f === :NextItemData && return Ptr{ImGuiNextItemData}(x + 7704) + f === :LastItemData && return Ptr{ImGuiLastItemData}(x + 7760) + f === :NextWindowData && return Ptr{ImGuiNextWindowData}(x + 7840) + f === :DebugShowGroupRects && return Ptr{Bool}(x + 8000) + f === :DebugFlashStyleColorIdx && return Ptr{ImGuiCol}(x + 8004) + f === :ColorStack && return Ptr{ImVector_ImGuiColorMod}(x + 8008) + f === :StyleVarStack && return Ptr{ImVector_ImGuiStyleMod}(x + 8024) + f === :FontStack && return Ptr{ImVector_ImFontPtr}(x + 8040) + f === :FocusScopeStack && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8056) + f === :ItemFlagsStack && return Ptr{ImVector_ImGuiItemFlags}(x + 8072) + f === :GroupStack && return Ptr{ImVector_ImGuiGroupData}(x + 8088) + f === :OpenPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8104) + f === :BeginPopupStack && return Ptr{ImVector_ImGuiPopupData}(x + 8120) + f === :TreeNodeStack && return Ptr{ImVector_ImGuiTreeNodeStackData}(x + 8136) + f === :Viewports && return Ptr{ImVector_ImGuiViewportPPtr}(x + 8152) + f === :CurrentViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8168) + f === :MouseViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8176) + f === :MouseLastHoveredViewport && return Ptr{Ptr{ImGuiViewportP}}(x + 8184) + f === :PlatformLastFocusedViewportId && return Ptr{ImGuiID}(x + 8192) + f === :FallbackMonitor && return Ptr{ImGuiPlatformMonitor}(x + 8200) + f === :PlatformMonitorsFullWorkRect && return Ptr{ImRect}(x + 8248) + f === :ViewportCreatedCount && return Ptr{Cint}(x + 8264) + f === :PlatformWindowsCreatedCount && return Ptr{Cint}(x + 8268) + f === :ViewportFocusedStampCount && return Ptr{Cint}(x + 8272) + f === :NavWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8280) + f === :NavId && return Ptr{ImGuiID}(x + 8288) + f === :NavFocusScopeId && return Ptr{ImGuiID}(x + 8292) + f === :NavLayer && return Ptr{ImGuiNavLayer}(x + 8296) + f === :NavActivateId && return Ptr{ImGuiID}(x + 8300) + f === :NavActivateDownId && return Ptr{ImGuiID}(x + 8304) + f === :NavActivatePressedId && return Ptr{ImGuiID}(x + 8308) + f === :NavActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8312) + f === :NavFocusRoute && return Ptr{ImVector_ImGuiFocusScopeData}(x + 8320) + f === :NavHighlightActivatedId && return Ptr{ImGuiID}(x + 8336) + f === :NavHighlightActivatedTimer && return Ptr{Cfloat}(x + 8340) + f === :NavNextActivateId && return Ptr{ImGuiID}(x + 8344) + f === :NavNextActivateFlags && return Ptr{ImGuiActivateFlags}(x + 8348) + f === :NavInputSource && return Ptr{ImGuiInputSource}(x + 8352) + f === :NavLastValidSelectionUserData && return Ptr{ImGuiSelectionUserData}(x + 8360) + f === :NavIdIsAlive && return Ptr{Bool}(x + 8368) + f === :NavMousePosDirty && return Ptr{Bool}(x + 8369) + f === :NavDisableHighlight && return Ptr{Bool}(x + 8370) + f === :NavDisableMouseHover && return Ptr{Bool}(x + 8371) + f === :NavAnyRequest && return Ptr{Bool}(x + 8372) + f === :NavInitRequest && return Ptr{Bool}(x + 8373) + f === :NavInitRequestFromMove && return Ptr{Bool}(x + 8374) + f === :NavInitResult && return Ptr{ImGuiNavItemData}(x + 8376) + f === :NavMoveSubmitted && return Ptr{Bool}(x + 8432) + f === :NavMoveScoringItems && return Ptr{Bool}(x + 8433) + f === :NavMoveForwardToNextFrame && return Ptr{Bool}(x + 8434) + f === :NavMoveFlags && return Ptr{ImGuiNavMoveFlags}(x + 8436) + f === :NavMoveScrollFlags && return Ptr{ImGuiScrollFlags}(x + 8440) + f === :NavMoveKeyMods && return Ptr{ImGuiKeyChord}(x + 8444) + f === :NavMoveDir && return Ptr{ImGuiDir}(x + 8448) + f === :NavMoveDirForDebug && return Ptr{ImGuiDir}(x + 8452) + f === :NavMoveClipDir && return Ptr{ImGuiDir}(x + 8456) + f === :NavScoringRect && return Ptr{ImRect}(x + 8460) + f === :NavScoringNoClipRect && return Ptr{ImRect}(x + 8476) + f === :NavScoringDebugCount && return Ptr{Cint}(x + 8492) + f === :NavTabbingDir && return Ptr{Cint}(x + 8496) + f === :NavTabbingCounter && return Ptr{Cint}(x + 8500) + f === :NavMoveResultLocal && return Ptr{ImGuiNavItemData}(x + 8504) + f === :NavMoveResultLocalVisible && return Ptr{ImGuiNavItemData}(x + 8560) + f === :NavMoveResultOther && return Ptr{ImGuiNavItemData}(x + 8616) + f === :NavTabbingResultFirst && return Ptr{ImGuiNavItemData}(x + 8672) + f === :NavJustMovedFromFocusScopeId && return Ptr{ImGuiID}(x + 8728) + f === :NavJustMovedToId && return Ptr{ImGuiID}(x + 8732) + f === :NavJustMovedToFocusScopeId && return Ptr{ImGuiID}(x + 8736) + f === :NavJustMovedToKeyMods && return Ptr{ImGuiKeyChord}(x + 8740) + f === :NavJustMovedToIsTabbing && return Ptr{Bool}(x + 8744) + f === :NavJustMovedToHasSelectionData && return Ptr{Bool}(x + 8745) + f === :ConfigNavWindowingKeyNext && return Ptr{ImGuiKeyChord}(x + 8748) + f === :ConfigNavWindowingKeyPrev && return Ptr{ImGuiKeyChord}(x + 8752) + f === :NavWindowingTarget && return Ptr{Ptr{ImGuiWindow}}(x + 8760) + f === :NavWindowingTargetAnim && return Ptr{Ptr{ImGuiWindow}}(x + 8768) + f === :NavWindowingListWindow && return Ptr{Ptr{ImGuiWindow}}(x + 8776) + f === :NavWindowingTimer && return Ptr{Cfloat}(x + 8784) + f === :NavWindowingHighlightAlpha && return Ptr{Cfloat}(x + 8788) + f === :NavWindowingToggleLayer && return Ptr{Bool}(x + 8792) + f === :NavWindowingToggleKey && return Ptr{ImGuiKey}(x + 8796) + f === :NavWindowingAccumDeltaPos && return Ptr{ImVec2}(x + 8800) + f === :NavWindowingAccumDeltaSize && return Ptr{ImVec2}(x + 8808) + f === :DimBgRatio && return Ptr{Cfloat}(x + 8816) + f === :DragDropActive && return Ptr{Bool}(x + 8820) + f === :DragDropWithinSource && return Ptr{Bool}(x + 8821) + f === :DragDropWithinTarget && return Ptr{Bool}(x + 8822) + f === :DragDropSourceFlags && return Ptr{ImGuiDragDropFlags}(x + 8824) + f === :DragDropSourceFrameCount && return Ptr{Cint}(x + 8828) + f === :DragDropMouseButton && return Ptr{Cint}(x + 8832) + f === :DragDropPayload && return Ptr{ImGuiPayload}(x + 8840) + f === :DragDropTargetRect && return Ptr{ImRect}(x + 8904) + f === :DragDropTargetClipRect && return Ptr{ImRect}(x + 8920) + f === :DragDropTargetId && return Ptr{ImGuiID}(x + 8936) + f === :DragDropAcceptFlags && return Ptr{ImGuiDragDropFlags}(x + 8940) + f === :DragDropAcceptIdCurrRectSurface && return Ptr{Cfloat}(x + 8944) + f === :DragDropAcceptIdCurr && return Ptr{ImGuiID}(x + 8948) + f === :DragDropAcceptIdPrev && return Ptr{ImGuiID}(x + 8952) + f === :DragDropAcceptFrameCount && return Ptr{Cint}(x + 8956) + f === :DragDropHoldJustPressedId && return Ptr{ImGuiID}(x + 8960) + f === :DragDropPayloadBufHeap && return Ptr{ImVector_unsigned_char}(x + 8968) + f === :DragDropPayloadBufLocal && return Ptr{NTuple{16, Cuchar}}(x + 8984) + f === :ClipperTempDataStacked && return Ptr{Cint}(x + 9000) + f === :ClipperTempData && return Ptr{ImVector_ImGuiListClipperData}(x + 9008) + f === :CurrentTable && return Ptr{Ptr{ImGuiTable}}(x + 9024) + f === :DebugBreakInTable && return Ptr{ImGuiID}(x + 9032) + f === :TablesTempDataStacked && return Ptr{Cint}(x + 9036) + f === :TablesTempData && return Ptr{ImVector_ImGuiTableTempData}(x + 9040) + f === :Tables && return Ptr{ImPool_ImGuiTable}(x + 9056) + f === :TablesLastTimeActive && return Ptr{ImVector_float}(x + 9096) + f === :DrawChannelsTempMergeBuffer && return Ptr{ImVector_ImDrawChannel}(x + 9112) + f === :CurrentTabBar && return Ptr{Ptr{ImGuiTabBar}}(x + 9128) + f === :TabBars && return Ptr{ImPool_ImGuiTabBar}(x + 9136) + f === :CurrentTabBarStack && return Ptr{ImVector_ImGuiPtrOrIndex}(x + 9176) + f === :ShrinkWidthBuffer && return Ptr{ImVector_ImGuiShrinkWidthItem}(x + 9192) + f === :BoxSelectState && return Ptr{ImGuiBoxSelectState}(x + 9208) + f === :CurrentMultiSelect && return Ptr{Ptr{ImGuiMultiSelectTempData}}(x + 9312) + f === :MultiSelectTempDataStacked && return Ptr{Cint}(x + 9320) + f === :MultiSelectTempData && return Ptr{ImVector_ImGuiMultiSelectTempData}(x + 9328) + f === :MultiSelectStorage && return Ptr{ImPool_ImGuiMultiSelectState}(x + 9344) + f === :HoverItemDelayId && return Ptr{ImGuiID}(x + 9384) + f === :HoverItemDelayIdPreviousFrame && return Ptr{ImGuiID}(x + 9388) + f === :HoverItemDelayTimer && return Ptr{Cfloat}(x + 9392) + f === :HoverItemDelayClearTimer && return Ptr{Cfloat}(x + 9396) + f === :HoverItemUnlockedStationaryId && return Ptr{ImGuiID}(x + 9400) + f === :HoverWindowUnlockedStationaryId && return Ptr{ImGuiID}(x + 9404) + f === :MouseCursor && return Ptr{ImGuiMouseCursor}(x + 9408) + f === :MouseStationaryTimer && return Ptr{Cfloat}(x + 9412) + f === :MouseLastValidPos && return Ptr{ImVec2}(x + 9416) + f === :InputTextState && return Ptr{ImGuiInputTextState}(x + 9424) + f === :InputTextDeactivatedState && return Ptr{ImGuiInputTextDeactivatedState}(x + 9536) + f === :InputTextPasswordFont && return Ptr{ImFont}(x + 9560) + f === :TempInputId && return Ptr{ImGuiID}(x + 9680) + f === :DataTypeZeroValue && return Ptr{ImGuiDataTypeStorage}(x + 9684) + f === :BeginMenuDepth && return Ptr{Cint}(x + 9692) + f === :BeginComboDepth && return Ptr{Cint}(x + 9696) + f === :ColorEditOptions && return Ptr{ImGuiColorEditFlags}(x + 9700) + f === :ColorEditCurrentID && return Ptr{ImGuiID}(x + 9704) + f === :ColorEditSavedID && return Ptr{ImGuiID}(x + 9708) + f === :ColorEditSavedHue && return Ptr{Cfloat}(x + 9712) + f === :ColorEditSavedSat && return Ptr{Cfloat}(x + 9716) + f === :ColorEditSavedColor && return Ptr{ImU32}(x + 9720) + f === :ColorPickerRef && return Ptr{ImVec4}(x + 9724) + f === :ComboPreviewData && return Ptr{ImGuiComboPreviewData}(x + 9740) + f === :WindowResizeBorderExpectedRect && return Ptr{ImRect}(x + 9788) + f === :WindowResizeRelativeMode && return Ptr{Bool}(x + 9804) + f === :ScrollbarSeekMode && return Ptr{Cshort}(x + 9806) + f === :ScrollbarClickDeltaToGrabCenter && return Ptr{Cfloat}(x + 9808) + f === :SliderGrabClickOffset && return Ptr{Cfloat}(x + 9812) + f === :SliderCurrentAccum && return Ptr{Cfloat}(x + 9816) + f === :SliderCurrentAccumDirty && return Ptr{Bool}(x + 9820) + f === :DragCurrentAccumDirty && return Ptr{Bool}(x + 9821) + f === :DragCurrentAccum && return Ptr{Cfloat}(x + 9824) + f === :DragSpeedDefaultRatio && return Ptr{Cfloat}(x + 9828) + f === :DisabledAlphaBackup && return Ptr{Cfloat}(x + 9832) + f === :DisabledStackSize && return Ptr{Cshort}(x + 9836) + f === :LockMarkEdited && return Ptr{Cshort}(x + 9838) + f === :TooltipOverrideCount && return Ptr{Cshort}(x + 9840) + f === :ClipboardHandlerData && return Ptr{ImVector_char}(x + 9848) + f === :MenusIdSubmittedThisFrame && return Ptr{ImVector_ImGuiID}(x + 9864) + f === :TypingSelectState && return Ptr{ImGuiTypingSelectState}(x + 9880) + f === :PlatformImeData && return Ptr{ImGuiPlatformImeData}(x + 9984) + f === :PlatformImeDataPrev && return Ptr{ImGuiPlatformImeData}(x + 10000) + f === :PlatformImeViewport && return Ptr{ImGuiID}(x + 10016) + f === :DockContext && return Ptr{ImGuiDockContext}(x + 10024) + f === :DockNodeWindowMenuHandler && return Ptr{Ptr{Cvoid}}(x + 10080) + f === :SettingsLoaded && return Ptr{Bool}(x + 10088) + f === :SettingsDirtyTimer && return Ptr{Cfloat}(x + 10092) + f === :SettingsIniData && return Ptr{ImGuiTextBuffer}(x + 10096) + f === :SettingsHandlers && return Ptr{ImVector_ImGuiSettingsHandler}(x + 10112) + f === :SettingsWindows && return Ptr{ImChunkStream_ImGuiWindowSettings}(x + 10128) + f === :SettingsTables && return Ptr{ImChunkStream_ImGuiTableSettings}(x + 10144) + f === :Hooks && return Ptr{ImVector_ImGuiContextHook}(x + 10160) + f === :HookIdNext && return Ptr{ImGuiID}(x + 10176) + f === :LocalizationTable && return Ptr{NTuple{13, Ptr{Cchar}}}(x + 10184) + f === :LogEnabled && return Ptr{Bool}(x + 10288) + f === :LogType && return Ptr{ImGuiLogType}(x + 10292) + f === :LogFile && return Ptr{ImFileHandle}(x + 10296) + f === :LogBuffer && return Ptr{ImGuiTextBuffer}(x + 10304) + f === :LogNextPrefix && return Ptr{Ptr{Cchar}}(x + 10320) + f === :LogNextSuffix && return Ptr{Ptr{Cchar}}(x + 10328) + f === :LogLinePosY && return Ptr{Cfloat}(x + 10336) + f === :LogLineFirstItem && return Ptr{Bool}(x + 10340) + f === :LogDepthRef && return Ptr{Cint}(x + 10344) + f === :LogDepthToExpand && return Ptr{Cint}(x + 10348) + f === :LogDepthToExpandDefault && return Ptr{Cint}(x + 10352) + f === :DebugLogFlags && return Ptr{ImGuiDebugLogFlags}(x + 10356) + f === :DebugLogBuf && return Ptr{ImGuiTextBuffer}(x + 10360) + f === :DebugLogIndex && return Ptr{ImGuiTextIndex}(x + 10376) + f === :DebugLogAutoDisableFlags && return Ptr{ImGuiDebugLogFlags}(x + 10400) + f === :DebugLogAutoDisableFrames && return Ptr{ImU8}(x + 10404) + f === :DebugLocateFrames && return Ptr{ImU8}(x + 10405) + f === :DebugBreakInLocateId && return Ptr{Bool}(x + 10406) + f === :DebugBreakKeyChord && return Ptr{ImGuiKeyChord}(x + 10408) + f === :DebugBeginReturnValueCullDepth && return Ptr{ImS8}(x + 10412) + f === :DebugItemPickerActive && return Ptr{Bool}(x + 10413) + f === :DebugItemPickerMouseButton && return Ptr{ImU8}(x + 10414) + f === :DebugItemPickerBreakId && return Ptr{ImGuiID}(x + 10416) + f === :DebugFlashStyleColorTime && return Ptr{Cfloat}(x + 10420) + f === :DebugFlashStyleColorBackup && return Ptr{ImVec4}(x + 10424) + f === :DebugMetricsConfig && return Ptr{ImGuiMetricsConfig}(x + 10440) + f === :DebugIDStackTool && return Ptr{ImGuiIDStackTool}(x + 10472) + f === :DebugAllocInfo && return Ptr{ImGuiDebugAllocInfo}(x + 10512) + f === :DebugHoveredDockNode && return Ptr{Ptr{ImGuiDockNode}}(x + 10576) + f === :FramerateSecPerFrame && return Ptr{NTuple{60, Cfloat}}(x + 10584) + f === :FramerateSecPerFrameIdx && return Ptr{Cint}(x + 10824) + f === :FramerateSecPerFrameCount && return Ptr{Cint}(x + 10828) + f === :FramerateSecPerFrameAccum && return Ptr{Cfloat}(x + 10832) + f === :WantCaptureMouseNextFrame && return Ptr{Cint}(x + 10836) + f === :WantCaptureKeyboardNextFrame && return Ptr{Cint}(x + 10840) + f === :WantTextInputNextFrame && return Ptr{Cint}(x + 10844) + f === :TempBuffer && return Ptr{ImVector_char}(x + 10848) + f === :TempKeychordName && return Ptr{NTuple{64, Cchar}}(x + 10864) return getfield(x, f) end @@ -3558,11 +3532,12 @@ mutable struct ImGuiInputTextDeactivateData end ImGuiLocKey_WindowingMainMenuBar = 5 ImGuiLocKey_WindowingPopup = 6 ImGuiLocKey_WindowingUntitled = 7 - ImGuiLocKey_CopyLink = 8 - ImGuiLocKey_DockingHideTabBar = 9 - ImGuiLocKey_DockingHoldShiftToDock = 10 - ImGuiLocKey_DockingDragToUndockOrMoveNode = 11 - ImGuiLocKey_COUNT = 12 + ImGuiLocKey_OpenLink_s = 8 + ImGuiLocKey_CopyLink = 9 + ImGuiLocKey_DockingHideTabBar = 10 + ImGuiLocKey_DockingHoldShiftToDock = 11 + ImGuiLocKey_DockingDragToUndockOrMoveNode = 12 + ImGuiLocKey_COUNT = 13 end struct ImGuiLocEntry @@ -3686,6 +3661,7 @@ end ImGuiItemFlags_NoNavDefaultFocus = 4 ImGuiItemFlags_ButtonRepeat = 8 ImGuiItemFlags_AutoClosePopups = 16 + ImGuiItemFlags_AllowDuplicateId = 32 end @cenum ImGuiInputTextFlags_::UInt32 begin @@ -4265,15 +4241,6 @@ const ImGuiTooltipFlags = Cint # typedef void ( * ImGuiErrorLogCallback ) ( void * user_data , const char * fmt , ... ) const ImGuiErrorLogCallback = Ptr{Cvoid} -struct StbTexteditRow - x0::Cfloat - x1::Cfloat - baseline_y_delta::Cfloat - ymin::Cfloat - ymax::Cfloat - num_chars::Cint -end - @cenum ImGuiDataTypePrivate_::UInt32 begin ImGuiDataType_String = 12 ImGuiDataType_Pointer = 13 @@ -7457,8 +7424,8 @@ function igImStrlenW(str) ccall((:igImStrlenW, libcimgui), Cint, (Ptr{ImWchar},), str) end -function igImStrbolW(buf_mid_line, buf_begin) - ccall((:igImStrbolW, libcimgui), Ptr{ImWchar}, (Ptr{ImWchar}, Ptr{ImWchar}), buf_mid_line, buf_begin) +function igImStrbol(buf_mid_line, buf_begin) + ccall((:igImStrbol, libcimgui), Ptr{Cchar}, (Ptr{Cchar}, Ptr{Cchar}), buf_mid_line, buf_begin) end function igImToUpper(c) @@ -8055,18 +8022,14 @@ function ImGuiInputTextState_ClearFreeMemory(self) ccall((:ImGuiInputTextState_ClearFreeMemory, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end -function ImGuiInputTextState_GetUndoAvailCount(self) - ccall((:ImGuiInputTextState_GetUndoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - -function ImGuiInputTextState_GetRedoAvailCount(self) - ccall((:ImGuiInputTextState_GetRedoAvailCount, libcimgui), Cint, (Ptr{ImGuiInputTextState},), self) -end - function ImGuiInputTextState_OnKeyPressed(self, key) ccall((:ImGuiInputTextState_OnKeyPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cint), self, key) end +function ImGuiInputTextState_OnCharPressed(self, c) + ccall((:ImGuiInputTextState_OnCharPressed, libcimgui), Cvoid, (Ptr{ImGuiInputTextState}, Cuint), self, c) +end + function ImGuiInputTextState_CursorAnimReset(self) ccall((:ImGuiInputTextState_CursorAnimReset, libcimgui), Cvoid, (Ptr{ImGuiInputTextState},), self) end @@ -8763,8 +8726,8 @@ function igCallContextHooks(context, type) ccall((:igCallContextHooks, libcimgui), Cvoid, (Ptr{ImGuiContext}, ImGuiContextHookType), context, type) end -function igTranslateWindowsInViewport(viewport, old_pos, new_pos) - ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2), viewport, old_pos, new_pos) +function igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) + ccall((:igTranslateWindowsInViewport, libcimgui), Cvoid, (Ptr{ImGuiViewportP}, ImVec2, ImVec2, ImVec2, ImVec2), viewport, old_pos, new_pos, old_size, new_size) end function igScaleWindowsInViewport(viewport, scale) diff --git a/src/wrapper.jl b/src/wrapper.jl index cfef4c0..0ee2600 100644 --- a/src/wrapper.jl +++ b/src/wrapper.jl @@ -14,7 +14,7 @@ Destroy(self::Ptr{ImVec4}) = ImVec4_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L328). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L328). """ CreateContext(shared_font_atlas::VoidablePtrOrRef{ImFontAtlas} = C_NULL) = igCreateContext(shared_font_atlas) @@ -23,21 +23,21 @@ $(TYPEDSIGNATURES) NULL = destroy current context. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L329). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L329). """ DestroyContext(ctx::VoidablePtrOrRef{ImGuiContext} = C_NULL) = igDestroyContext(ctx) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L330). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L330). """ GetCurrentContext() = igGetCurrentContext() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L331). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L331). """ SetCurrentContext(ctx::VoidablePtrOrRef{ImGuiContext}) = igSetCurrentContext(ctx) @@ -46,7 +46,7 @@ $(TYPEDSIGNATURES) Access the ImGuiIO structure (mouse/keyboard/gamepad inputs, time, various configuration options/flags). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L334). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L334). """ GetIO() = igGetIO() @@ -55,7 +55,7 @@ $(TYPEDSIGNATURES) Access the ImGuiPlatformIO structure (mostly hooks/functions to connect to platform/renderer and OS Clipboard, IME etc.). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L335). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L335). """ GetPlatformIO() = igGetPlatformIO() @@ -64,7 +64,7 @@ $(TYPEDSIGNATURES) Access the Style structure (colors, sizes). Always use PushStyleColor(), PushStyleVar() to modify style mid-frame! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L336). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L336). """ GetStyle() = igGetStyle() @@ -73,7 +73,7 @@ $(TYPEDSIGNATURES) Start a new Dear ImGui frame, you can submit any command from this point until Render()/EndFrame(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L337). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L337). """ NewFrame() = igNewFrame() @@ -82,7 +82,7 @@ $(TYPEDSIGNATURES) Ends the Dear ImGui frame. automatically called by Render(). If you don't need to render data (skipping rendering) you may call EndFrame() without Render()... but you'll have wasted CPU already! If you don't need to render, better to not create any windows and not call NewFrame() at all! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L338). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L338). """ EndFrame() = igEndFrame() @@ -91,7 +91,7 @@ $(TYPEDSIGNATURES) Ends the Dear ImGui frame, finalize the draw data. You can then get call GetDrawData(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L339). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L339). """ Render() = igRender() @@ -100,7 +100,7 @@ $(TYPEDSIGNATURES) Valid after Render() and until the next call to NewFrame(). this is what you have to render. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L340). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L340). """ GetDrawData() = igGetDrawData() @@ -109,7 +109,7 @@ $(TYPEDSIGNATURES) Create Demo window. demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L343). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L343). """ ShowDemoWindow(p_open = C_NULL) = igShowDemoWindow(p_open) @@ -118,7 +118,7 @@ $(TYPEDSIGNATURES) Create Metrics/Debugger window. display Dear ImGui internals: windows, draw commands, various internal state, etc. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L344). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L344). """ ShowMetricsWindow(p_open = C_NULL) = igShowMetricsWindow(p_open) @@ -127,7 +127,7 @@ $(TYPEDSIGNATURES) Create Debug Log window. display a simplified log of important dear imgui events. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L345). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L345). """ ShowDebugLogWindow(p_open = C_NULL) = igShowDebugLogWindow(p_open) @@ -136,7 +136,7 @@ $(TYPEDSIGNATURES) Create Stack Tool window. hover items with mouse to query information about the source of their unique ID. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L346). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L346). """ ShowIDStackToolWindow(p_open = C_NULL) = igShowIDStackToolWindow(p_open) @@ -145,7 +145,7 @@ $(TYPEDSIGNATURES) Create About window. display Dear ImGui version, credits and build/system information. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L347). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L347). """ ShowAboutWindow(p_open = C_NULL) = igShowAboutWindow(p_open) @@ -154,7 +154,7 @@ $(TYPEDSIGNATURES) Add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L348). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L348). """ ShowStyleEditor(ref::VoidablePtrOrRef{ImGuiStyle} = C_NULL) = igShowStyleEditor(ref) @@ -163,7 +163,7 @@ $(TYPEDSIGNATURES) Add style selector block (not a window), essentially a combo listing the default styles. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L349). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L349). """ ShowStyleSelector(label) = igShowStyleSelector(label) @@ -172,7 +172,7 @@ $(TYPEDSIGNATURES) Add font selector block (not a window), essentially a combo listing the loaded fonts. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L350). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L350). """ ShowFontSelector(label) = igShowFontSelector(label) @@ -181,7 +181,7 @@ $(TYPEDSIGNATURES) Add basic help/info block (not a window): how to manipulate ImGui as an end-user (mouse/keyboard controls). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L351). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L351). """ ShowUserGuide() = igShowUserGuide() @@ -190,7 +190,7 @@ $(TYPEDSIGNATURES) Get the compiled version string e.g. "1.80 WIP" (essentially the value for IMGUI_VERSION from the compiled version of imgui.cpp). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L352). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L352). """ GetVersion() = igGetVersion() @@ -199,7 +199,7 @@ $(TYPEDSIGNATURES) New, recommended style (default). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L355). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L355). """ StyleColorsDark(dst::VoidablePtrOrRef{ImGuiStyle} = C_NULL) = igStyleColorsDark(dst) @@ -208,7 +208,7 @@ $(TYPEDSIGNATURES) Best used with borders and a custom, thicker font. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L356). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L356). """ StyleColorsLight(dst::VoidablePtrOrRef{ImGuiStyle} = C_NULL) = igStyleColorsLight(dst) @@ -217,14 +217,14 @@ $(TYPEDSIGNATURES) Classic imgui style. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L357). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L357). """ StyleColorsClassic(dst::VoidablePtrOrRef{ImGuiStyle} = C_NULL) = igStyleColorsClassic(dst) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L371). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L371). """ Begin( name::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -235,14 +235,14 @@ Begin( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L372). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L372). """ End() = igEnd() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L392). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L392). """ BeginChild( str_id::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -254,7 +254,7 @@ BeginChild( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L393). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L393). """ BeginChild( id::Union{ImGuiID,Integer}, @@ -266,21 +266,21 @@ BeginChild( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L394). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L394). """ EndChild() = igEndChild() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L398). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L398). """ IsWindowAppearing() = igIsWindowAppearing() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L399). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L399). """ IsWindowCollapsed() = igIsWindowCollapsed() @@ -289,7 +289,7 @@ $(TYPEDSIGNATURES) Is current window focused? or its root/child, depending on flags. see flags for options. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L400). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L400). """ IsWindowFocused(flags::Union{ImGuiFocusedFlags,ImGuiFocusedFlags_,Integer} = 0) = igIsWindowFocused(flags) @@ -298,7 +298,7 @@ $(TYPEDSIGNATURES) Is current window hovered and hoverable (e.g. not blocked by a popup/modal)? See ImGuiHoveredFlags_ for options. IMPORTANT: If you are trying to check whether your mouse should be dispatched to Dear ImGui or to your underlying app, you should not use this function! Use the 'io.WantCaptureMouse' boolean for that! Refer to FAQ entry "How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application?" for details. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L401). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L401). """ IsWindowHovered(flags::Union{ImGuiHoveredFlags,ImGuiHoveredFlags_,Integer} = 0) = igIsWindowHovered(flags) @@ -307,7 +307,7 @@ $(TYPEDSIGNATURES) Get draw list associated to the current window, to append your own drawing primitives. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L402). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L402). """ GetWindowDrawList() = igGetWindowDrawList() @@ -316,7 +316,7 @@ $(TYPEDSIGNATURES) Get DPI scale currently associated to the current window's viewport. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L403). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L403). """ GetWindowDpiScale() = igGetWindowDpiScale() @@ -325,7 +325,7 @@ $(TYPEDSIGNATURES) Get current window position in screen space (IT IS UNLIKELY YOU EVER NEED TO USE THIS. Consider always using GetCursorScreenPos() and GetContentRegionAvail() instead). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L404). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L404). """ function GetWindowPos() pOut = Ref{ImVec2}() @@ -338,7 +338,7 @@ $(TYPEDSIGNATURES) Get current window size (IT IS UNLIKELY YOU EVER NEED TO USE THIS. Consider always using GetCursorScreenPos() and GetContentRegionAvail() instead). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L405). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L405). """ function GetWindowSize() pOut = Ref{ImVec2}() @@ -351,7 +351,7 @@ $(TYPEDSIGNATURES) Get current window width (IT IS UNLIKELY YOU EVER NEED TO USE THIS). Shortcut for GetWindowSize().x. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L406). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L406). """ GetWindowWidth() = igGetWindowWidth() @@ -360,7 +360,7 @@ $(TYPEDSIGNATURES) Get current window height (IT IS UNLIKELY YOU EVER NEED TO USE THIS). Shortcut for GetWindowSize().y. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L407). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L407). """ GetWindowHeight() = igGetWindowHeight() @@ -369,7 +369,7 @@ $(TYPEDSIGNATURES) Get viewport currently associated to the current window. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L408). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L408). """ GetWindowViewport() = igGetWindowViewport() @@ -378,7 +378,7 @@ $(TYPEDSIGNATURES) Set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L412). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L412). """ SetNextWindowPos( pos::Union{ImVec2,NTuple{2}}, @@ -391,7 +391,7 @@ $(TYPEDSIGNATURES) Set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L413). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L413). """ SetNextWindowSize(size::Union{ImVec2,NTuple{2}}, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetNextWindowSize(size, cond) @@ -401,7 +401,7 @@ $(TYPEDSIGNATURES) Set next window size limits. use 0.0f or FLT_MAX if you don't want limits. Use -1 for both min and max of same axis to preserve current size (which itself is a constraint). Use callback to apply non-trivial programmatic constraints. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L414). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L414). """ SetNextWindowSizeConstraints( size_min::Union{ImVec2,NTuple{2}}, @@ -415,7 +415,7 @@ $(TYPEDSIGNATURES) Set next window content size (~ scrollable client area, which enforce the range of scrollbars). Not including window decorations (title bar, menu bar, etc.) nor WindowPadding. set an axis to 0.0f to leave it automatic. call before Begin(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L415). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L415). """ SetNextWindowContentSize(size::Union{ImVec2,NTuple{2}}) = igSetNextWindowContentSize(size) @@ -424,7 +424,7 @@ $(TYPEDSIGNATURES) Set next window collapsed state. call before Begin(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L416). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L416). """ SetNextWindowCollapsed(collapsed, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetNextWindowCollapsed(collapsed, cond) @@ -434,7 +434,7 @@ $(TYPEDSIGNATURES) Set next window to be focused / top-most. call before Begin(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L417). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L417). """ SetNextWindowFocus() = igSetNextWindowFocus() @@ -443,7 +443,7 @@ $(TYPEDSIGNATURES) Set next window scrolling value (use < 0.0f to not affect a given axis). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L418). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L418). """ SetNextWindowScroll(scroll::Union{ImVec2,NTuple{2}}) = igSetNextWindowScroll(scroll) @@ -452,7 +452,7 @@ $(TYPEDSIGNATURES) Set next window background color alpha. helper to easily override the Alpha component of ImGuiCol_WindowBg/ChildBg/PopupBg. you may also use ImGuiWindowFlags_NoBackground. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L419). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L419). """ SetNextWindowBgAlpha(alpha) = igSetNextWindowBgAlpha(alpha) @@ -461,7 +461,7 @@ $(TYPEDSIGNATURES) Set next window viewport. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L420). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L420). """ SetNextWindowViewport(viewport_id::Union{ImGuiID,Integer}) = igSetNextWindowViewport(viewport_id) @@ -470,7 +470,7 @@ $(TYPEDSIGNATURES) (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L421). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L421). """ SetWindowPos(pos::Union{ImVec2,NTuple{2}}, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetWindowPos_Vec2(pos, cond) @@ -480,7 +480,7 @@ $(TYPEDSIGNATURES) (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0, 0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L422). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L422). """ SetWindowSize(size::Union{ImVec2,NTuple{2}}, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetWindowSize_Vec2(size, cond) @@ -490,7 +490,7 @@ $(TYPEDSIGNATURES) (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L423). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L423). """ SetWindowCollapsed(collapsed::Bool, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetWindowCollapsed_Bool(collapsed, cond) @@ -500,7 +500,7 @@ $(TYPEDSIGNATURES) (not recommended) set current window to be focused / top-most. prefer using SetNextWindowFocus(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L424). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L424). """ SetWindowFocus() = igSetWindowFocus_Nil() @@ -509,7 +509,7 @@ $(TYPEDSIGNATURES) [OBSOLETE] set font scale. Adjust IO.FontGlobalScale if you want to scale all windows. This is an old API! For correct scaling, prefer to reload font + rebuild ImFontAtlas + call style.ScaleAllSizes(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L425). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L425). """ SetWindowFontScale(scale) = igSetWindowFontScale(scale) @@ -518,7 +518,7 @@ $(TYPEDSIGNATURES) Set named window position. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L426). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L426). """ SetWindowPos( name::Union{String,Ptr{Cchar}}, @@ -531,7 +531,7 @@ $(TYPEDSIGNATURES) Set named window size. set axis to 0.0f to force an auto-fit on this axis. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L427). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L427). """ SetWindowSize( name::Union{String,Ptr{Cchar}}, @@ -544,7 +544,7 @@ $(TYPEDSIGNATURES) Set named window collapsed state. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L428). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L428). """ SetWindowCollapsed(name::Union{String,Ptr{Cchar}}, collapsed::Bool, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetWindowCollapsed_Str(name, collapsed, cond) @@ -554,7 +554,7 @@ $(TYPEDSIGNATURES) Set named window to be focused / top-most. use NULL to remove focus. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L429). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L429). """ SetWindowFocus(name::Union{String,Ptr{Cchar},Ptr{Cvoid}}) = igSetWindowFocus_Str(name) @@ -563,7 +563,7 @@ $(TYPEDSIGNATURES) Get scrolling amount [0 .. GetScrollMaxX()]. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L434). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L434). """ GetScrollX() = igGetScrollX() @@ -572,7 +572,7 @@ $(TYPEDSIGNATURES) Get scrolling amount [0 .. GetScrollMaxY()]. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L435). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L435). """ GetScrollY() = igGetScrollY() @@ -581,7 +581,7 @@ $(TYPEDSIGNATURES) Set scrolling amount [0 .. GetScrollMaxX()]. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L436). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L436). """ SetScrollX(scroll_x::Real) = igSetScrollX_Float(scroll_x) @@ -590,7 +590,7 @@ $(TYPEDSIGNATURES) Set scrolling amount [0 .. GetScrollMaxY()]. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L437). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L437). """ SetScrollY(scroll_y::Real) = igSetScrollY_Float(scroll_y) @@ -599,7 +599,7 @@ $(TYPEDSIGNATURES) Get maximum scrolling amount ~~ ContentSize.x - WindowSize.x - DecorationsSize.x. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L438). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L438). """ GetScrollMaxX() = igGetScrollMaxX() @@ -608,7 +608,7 @@ $(TYPEDSIGNATURES) Get maximum scrolling amount ~~ ContentSize.y - WindowSize.y - DecorationsSize.y. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L439). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L439). """ GetScrollMaxY() = igGetScrollMaxY() @@ -617,7 +617,7 @@ $(TYPEDSIGNATURES) Adjust scrolling amount to make current cursor position visible. center_x_ratio=0.0: left, 0.5: center, 1.0: right. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L440). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L440). """ SetScrollHereX(center_x_ratio = 0.5f0) = igSetScrollHereX(center_x_ratio) @@ -626,7 +626,7 @@ $(TYPEDSIGNATURES) Adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L441). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L441). """ SetScrollHereY(center_y_ratio = 0.5f0) = igSetScrollHereY(center_y_ratio) @@ -635,7 +635,7 @@ $(TYPEDSIGNATURES) Adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L442). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L442). """ SetScrollFromPosX(local_x::Real, center_x_ratio::Real = 0.5f0) = igSetScrollFromPosX_Float(local_x, center_x_ratio) @@ -644,7 +644,7 @@ $(TYPEDSIGNATURES) Adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L443). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L443). """ SetScrollFromPosY(local_y::Real, center_y_ratio::Real = 0.5f0) = igSetScrollFromPosY_Float(local_y, center_y_ratio) @@ -653,14 +653,14 @@ $(TYPEDSIGNATURES) Use NULL as a shortcut to push default font. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L446). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L446). """ PushFont(font::VoidablePtrOrRef{ImFont}) = igPushFont(font) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L447). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L447). """ PopFont() = igPopFont() @@ -669,21 +669,21 @@ $(TYPEDSIGNATURES) Modify a style color. always use this if you modify the style after NewFrame(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L448). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L448). """ PushStyleColor(idx::Union{ImGuiCol,ImGuiCol_,Integer}, col::Union{ImU32,Integer}) = igPushStyleColor_U32(idx, col) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L449). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L449). """ PushStyleColor(idx::Union{ImGuiCol,ImGuiCol_,Integer}, col::Union{ImVec4,NTuple{4}}) = igPushStyleColor_Vec4(idx, col) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L450). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L450). """ PopStyleColor(count = 1) = igPopStyleColor(count) @@ -692,7 +692,7 @@ $(TYPEDSIGNATURES) Modify a style float variable. always use this if you modify the style after NewFrame()! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L451). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L451). """ PushStyleVar(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, val::Real) = igPushStyleVar_Float(idx, val) @@ -701,7 +701,7 @@ $(TYPEDSIGNATURES) Modify a style ImVec2 variable. ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L452). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L452). """ PushStyleVar(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, val::Union{ImVec2,NTuple{2}}) = igPushStyleVar_Vec2(idx, val) @@ -711,7 +711,7 @@ $(TYPEDSIGNATURES) Modify X component of a style ImVec2 variable. ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L453). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L453). """ PushStyleVarX(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, val_x) = igPushStyleVarX(idx, val_x) @@ -720,14 +720,14 @@ $(TYPEDSIGNATURES) Modify Y component of a style ImVec2 variable. ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L454). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L454). """ PushStyleVarY(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, val_y) = igPushStyleVarY(idx, val_y) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L455). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L455). """ PopStyleVar(count = 1) = igPopStyleVar(count) @@ -736,14 +736,14 @@ $(TYPEDSIGNATURES) Modify specified shared item flag, e.g. PushItemFlag(ImGuiItemFlags_NoTabStop, true). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L456). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L456). """ PushItemFlag(option::Union{ImGuiItemFlags,ImGuiItemFlags_,Integer}, enabled) = igPushItemFlag(option, enabled) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L457). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L457). """ PopItemFlag() = igPopItemFlag() @@ -752,14 +752,14 @@ $(TYPEDSIGNATURES) Push width of items for common large "item+label" widgets. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L460). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L460). """ PushItemWidth(item_width) = igPushItemWidth(item_width) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L461). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L461). """ PopItemWidth() = igPopItemWidth() @@ -768,7 +768,7 @@ $(TYPEDSIGNATURES) Set width of the _next_ common large "item+label" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L462). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L462). """ SetNextItemWidth(item_width) = igSetNextItemWidth(item_width) @@ -777,7 +777,7 @@ $(TYPEDSIGNATURES) Width of item given pushed settings and current cursor position. NOT necessarily the width of last item unlike most 'Item' functions. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L463). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L463). """ CalcItemWidth() = igCalcItemWidth() @@ -786,14 +786,14 @@ $(TYPEDSIGNATURES) Push word-wrapping position for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L464). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L464). """ PushTextWrapPos(wrap_local_pos_x = 0.0f0) = igPushTextWrapPos(wrap_local_pos_x) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L465). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L465). """ PopTextWrapPos() = igPopTextWrapPos() @@ -802,7 +802,7 @@ $(TYPEDSIGNATURES) Get current font. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L469). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L469). """ GetFont() = igGetFont() @@ -811,7 +811,7 @@ $(TYPEDSIGNATURES) Get current font size (= height in pixels) of current font with current scale applied. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L470). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L470). """ GetFontSize() = igGetFontSize() @@ -820,7 +820,7 @@ $(TYPEDSIGNATURES) Get UV coordinate for a white pixel, useful to draw custom shapes via the ImDrawList API. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L471). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L471). """ function GetFontTexUvWhitePixel() pOut = Ref{ImVec2}() @@ -833,7 +833,7 @@ $(TYPEDSIGNATURES) Retrieve given style color with style alpha applied and optional extra alpha multiplier, packed as a 32-bit value suitable for ImDrawList. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L472). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L472). """ GetColorU32(idx::Union{ImGuiCol,ImGuiCol_,Integer}, alpha_mul::Real = 1.0f0) = igGetColorU32_Col(idx, alpha_mul) @@ -842,7 +842,7 @@ $(TYPEDSIGNATURES) Retrieve given color with style alpha applied, packed as a 32-bit value suitable for ImDrawList. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L473). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L473). """ GetColorU32(col::Union{ImVec4,NTuple{4}}) = igGetColorU32_Vec4(col) @@ -851,7 +851,7 @@ $(TYPEDSIGNATURES) Retrieve given color with style alpha applied, packed as a 32-bit value suitable for ImDrawList. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L474). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L474). """ GetColorU32(col::Union{ImU32,Integer}, alpha_mul::Real = 1.0f0) = igGetColorU32_U32(col, alpha_mul) @@ -860,7 +860,7 @@ $(TYPEDSIGNATURES) Retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwise use GetColorU32() to get style color with style alpha baked in. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L475). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L475). """ GetStyleColorVec4(idx::Union{ImGuiCol,ImGuiCol_,Integer}) = igGetStyleColorVec4(idx) @@ -869,7 +869,7 @@ $(TYPEDSIGNATURES) Cursor position, absolute coordinates. THIS IS YOUR BEST FRIEND (prefer using this rather than GetCursorPos(), also more useful to work with ImDrawList API). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L487). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L487). """ function GetCursorScreenPos() pOut = Ref{ImVec2}() @@ -882,7 +882,7 @@ $(TYPEDSIGNATURES) Cursor position, absolute coordinates. THIS IS YOUR BEST FRIEND. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L488). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L488). """ SetCursorScreenPos(pos::Union{ImVec2,NTuple{2}}) = igSetCursorScreenPos(pos) @@ -891,7 +891,7 @@ $(TYPEDSIGNATURES) Available space from current position. THIS IS YOUR BEST FRIEND. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L489). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L489). """ function GetContentRegionAvail() pOut = Ref{ImVec2}() @@ -904,7 +904,7 @@ $(TYPEDSIGNATURES) [window-local] cursor position in window-local coordinates. This is not your best friend. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L490). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L490). """ function GetCursorPos() pOut = Ref{ImVec2}() @@ -917,7 +917,7 @@ $(TYPEDSIGNATURES) [window-local] ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L491). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L491). """ GetCursorPosX() = igGetCursorPosX() @@ -926,7 +926,7 @@ $(TYPEDSIGNATURES) [window-local] ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L492). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L492). """ GetCursorPosY() = igGetCursorPosY() @@ -935,7 +935,7 @@ $(TYPEDSIGNATURES) [window-local] ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L493). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L493). """ SetCursorPos(local_pos::Union{ImVec2,NTuple{2}}) = igSetCursorPos(local_pos) @@ -944,7 +944,7 @@ $(TYPEDSIGNATURES) [window-local] ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L494). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L494). """ SetCursorPosX(local_x) = igSetCursorPosX(local_x) @@ -953,7 +953,7 @@ $(TYPEDSIGNATURES) [window-local] ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L495). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L495). """ SetCursorPosY(local_y) = igSetCursorPosY(local_y) @@ -962,7 +962,7 @@ $(TYPEDSIGNATURES) [window-local] initial cursor position, in window-local coordinates. Call GetCursorScreenPos() after Begin() to get the absolute coordinates version. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L496). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L496). """ function GetCursorStartPos() pOut = Ref{ImVec2}() @@ -975,7 +975,7 @@ $(TYPEDSIGNATURES) Separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L499). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L499). """ Separator() = igSeparator() @@ -984,7 +984,7 @@ $(TYPEDSIGNATURES) Call between widgets or groups to layout them horizontally. X position given in window coordinates. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L500). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L500). """ SameLine(offset_from_start_x = 0.0f0, spacing = -1.0f0) = igSameLine(offset_from_start_x, spacing) @@ -993,7 +993,7 @@ $(TYPEDSIGNATURES) Undo a SameLine() or force a new line when in a horizontal-layout context. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L501). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L501). """ NewLine() = igNewLine() @@ -1002,7 +1002,7 @@ $(TYPEDSIGNATURES) Add vertical spacing. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L502). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L502). """ Spacing() = igSpacing() @@ -1011,7 +1011,7 @@ $(TYPEDSIGNATURES) Add a dummy item of given size. unlike InvisibleButton(), Dummy() won't take the mouse click or be navigable into. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L503). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L503). """ Dummy(size::Union{ImVec2,NTuple{2}}) = igDummy(size) @@ -1020,7 +1020,7 @@ $(TYPEDSIGNATURES) Move content position toward the right, by indent_w, or style.IndentSpacing if indent_w <= 0. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L504). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L504). """ Indent(indent_w = 0.0f0) = igIndent(indent_w) @@ -1029,7 +1029,7 @@ $(TYPEDSIGNATURES) Move content position back to the left, by indent_w, or style.IndentSpacing if indent_w <= 0. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L505). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L505). """ Unindent(indent_w = 0.0f0) = igUnindent(indent_w) @@ -1038,7 +1038,7 @@ $(TYPEDSIGNATURES) Lock horizontal starting position. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L506). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L506). """ BeginGroup() = igBeginGroup() @@ -1047,7 +1047,7 @@ $(TYPEDSIGNATURES) Unlock horizontal starting position + capture the whole group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L507). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L507). """ EndGroup() = igEndGroup() @@ -1056,7 +1056,7 @@ $(TYPEDSIGNATURES) Vertically align upcoming text baseline to FramePadding.y so that it will align properly to regularly framed items (call if you have text on a line before a framed item). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L508). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L508). """ AlignTextToFramePadding() = igAlignTextToFramePadding() @@ -1065,7 +1065,7 @@ $(TYPEDSIGNATURES) ~ FontSize. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L509). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L509). """ GetTextLineHeight() = igGetTextLineHeight() @@ -1074,7 +1074,7 @@ $(TYPEDSIGNATURES) ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L510). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L510). """ GetTextLineHeightWithSpacing() = igGetTextLineHeightWithSpacing() @@ -1083,7 +1083,7 @@ $(TYPEDSIGNATURES) ~ FontSize + style.FramePadding.y * 2. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L511). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L511). """ GetFrameHeight() = igGetFrameHeight() @@ -1092,7 +1092,7 @@ $(TYPEDSIGNATURES) ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L512). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L512). """ GetFrameHeightWithSpacing() = igGetFrameHeightWithSpacing() @@ -1101,7 +1101,7 @@ $(TYPEDSIGNATURES) Push string into the ID stack (will hash string). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L525). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L525). """ PushID(str_id::Union{String,Ptr{Cchar}}) = igPushID_Str(str_id) @@ -1110,7 +1110,7 @@ $(TYPEDSIGNATURES) Push string into the ID stack (will hash string). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L526). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L526). """ PushID(str_id_begin::Union{String,Ptr{Cchar}}, str_id_end::Union{String,Ptr{Cchar},Ptr{Cvoid}}) = igPushID_StrStr(str_id_begin, str_id_end) @@ -1120,7 +1120,7 @@ $(TYPEDSIGNATURES) Push pointer into the ID stack (will hash pointer). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L527). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L527). """ PushID(ptr_id::PtrOrRef{Cvoid}) = igPushID_Ptr(ptr_id) @@ -1129,7 +1129,7 @@ $(TYPEDSIGNATURES) Push integer into the ID stack (will hash integer). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L528). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L528). """ PushID(int_id::Integer) = igPushID_Int(int_id) @@ -1138,7 +1138,7 @@ $(TYPEDSIGNATURES) Pop from the ID stack. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L529). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L529). """ PopID() = igPopID() @@ -1147,14 +1147,14 @@ $(TYPEDSIGNATURES) Calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L530). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L530). """ GetID(str_id::Union{String,Ptr{Cchar}}) = igGetID_Str(str_id) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L531). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L531). """ GetID(str_id_begin::Union{String,Ptr{Cchar}}, str_id_end::Union{String,Ptr{Cchar},Ptr{Cvoid}}) = igGetID_StrStr(str_id_begin, str_id_end) @@ -1162,14 +1162,14 @@ GetID(str_id_begin::Union{String,Ptr{Cchar}}, str_id_end::Union{String,Ptr{Cchar """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L532). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L532). """ GetID(ptr_id::PtrOrRef{Cvoid}) = igGetID_Ptr(ptr_id) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L533). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L533). """ GetID(int_id::Integer) = igGetID_Int(int_id) @@ -1178,7 +1178,7 @@ $(TYPEDSIGNATURES) Raw text without formatting. Roughly equivalent to Text("%s", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L536). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L536). """ TextUnformatted(text, text_end = C_NULL) = igTextUnformatted(text, text_end) @@ -1187,7 +1187,7 @@ $(TYPEDSIGNATURES) Formatted text. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L537). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L537). """ Text(fmt) = igText(fmt) @@ -1196,7 +1196,7 @@ $(TYPEDSIGNATURES) Shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor();. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L539). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L539). """ TextColored(col::Union{ImVec4,NTuple{4}}, fmt) = igTextColored(col, fmt) @@ -1205,7 +1205,7 @@ $(TYPEDSIGNATURES) Shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor();. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L541). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L541). """ TextDisabled(fmt) = igTextDisabled(fmt) @@ -1214,7 +1214,7 @@ $(TYPEDSIGNATURES) Shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L543). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L543). """ TextWrapped(fmt) = igTextWrapped(fmt) @@ -1223,7 +1223,7 @@ $(TYPEDSIGNATURES) Display text+label aligned the same way as value+label widgets. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L545). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L545). """ LabelText(label, fmt) = igLabelText(label, fmt) @@ -1232,7 +1232,7 @@ $(TYPEDSIGNATURES) Shortcut for Bullet()+Text(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L547). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L547). """ BulletText(fmt) = igBulletText(fmt) @@ -1241,7 +1241,7 @@ $(TYPEDSIGNATURES) Currently: formatted text with an horizontal line. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L549). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L549). """ SeparatorText(label) = igSeparatorText(label) @@ -1250,7 +1250,7 @@ $(TYPEDSIGNATURES) Button. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L554). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L554). """ Button(label, size::Union{ImVec2,NTuple{2}} = ImVec2(0, 0)) = igButton(label, size) @@ -1259,7 +1259,7 @@ $(TYPEDSIGNATURES) Button with (FramePadding.y == 0) to easily embed within text. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L555). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L555). """ SmallButton(label) = igSmallButton(label) @@ -1268,7 +1268,7 @@ $(TYPEDSIGNATURES) Flexible button behavior without the visuals, frequently useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L556). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L556). """ InvisibleButton(str_id, size::Union{ImVec2,NTuple{2}}, flags::Union{ImGuiButtonFlags,ImGuiButtonFlags_,Integer} = 0) = igInvisibleButton(str_id, size, flags) @@ -1278,21 +1278,21 @@ $(TYPEDSIGNATURES) Square button with an arrow shape. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L557). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L557). """ ArrowButton(str_id, dir::ImGuiDir) = igArrowButton(str_id, dir) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L558). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L558). """ Checkbox(label, v) = igCheckbox(label, v) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L559). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L559). """ CheckboxFlags(label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, flags::PtrOrRef{Int32}, flags_value) = igCheckboxFlags_IntPtr(label, flags, flags_value) @@ -1300,7 +1300,7 @@ CheckboxFlags(label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, flags::PtrOrRef{Int32} """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L560). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L560). """ CheckboxFlags(label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, flags::PtrOrRef{UInt32}, flags_value) = igCheckboxFlags_UintPtr(label, flags, flags_value) @@ -1310,7 +1310,7 @@ $(TYPEDSIGNATURES) Use with e.g. if (RadioButton("one", my_value==1)) my_value = 1;. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L561). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L561). """ RadioButton(label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, active::Bool) = igRadioButton_Bool(label, active) @@ -1319,7 +1319,7 @@ $(TYPEDSIGNATURES) Shortcut to handle the above pattern when value is an integer. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L562). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L562). """ RadioButton(label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, v::VoidablePtrOrRef{Int32}, v_button::Integer) = igRadioButton_IntPtr(label, v, v_button) @@ -1327,7 +1327,7 @@ RadioButton(label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, v::VoidablePtrOrRef{Int3 """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L563). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L563). """ ProgressBar(fraction, size_arg::Union{ImVec2,NTuple{2}} = ImVec2(-FLT_MIN, 0), overlay = C_NULL) = igProgressBar(fraction, size_arg, overlay) @@ -1337,7 +1337,7 @@ $(TYPEDSIGNATURES) Draw a small circle + keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L564). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L564). """ Bullet() = igBullet() @@ -1346,7 +1346,7 @@ $(TYPEDSIGNATURES) Hyperlink text button, return true when clicked. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L565). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L565). """ TextLink(label) = igTextLink(label) @@ -1355,14 +1355,14 @@ $(TYPEDSIGNATURES) Hyperlink text button, automatically open file/url when clicked. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L566). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L566). """ TextLinkOpenURL(label, url = C_NULL) = igTextLinkOpenURL(label, url) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L572). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L572). """ Image( user_texture_id::ImTextureID, @@ -1376,7 +1376,7 @@ Image( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L573). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L573). """ ImageButton( str_id, @@ -1391,7 +1391,7 @@ ImageButton( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L578). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L578). """ BeginCombo(label, preview_value, flags::Union{ImGuiComboFlags,ImGuiComboFlags_,Integer} = 0) = igBeginCombo(label, preview_value, flags) @@ -1401,14 +1401,14 @@ $(TYPEDSIGNATURES) Only call EndCombo() if BeginCombo() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L579). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L579). """ EndCombo() = igEndCombo() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L580). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L580). """ Combo( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -1422,7 +1422,7 @@ $(TYPEDSIGNATURES) Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L581). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L581). """ Combo( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -1436,7 +1436,7 @@ $(TYPEDSIGNATURES) If v_min >= v_max we have no bound. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L596). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L596). """ DragFloat( label, @@ -1451,7 +1451,7 @@ DragFloat( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L597). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L597). """ DragFloat2( label, @@ -1466,7 +1466,7 @@ DragFloat2( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L598). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L598). """ DragFloat3( label, @@ -1481,7 +1481,7 @@ DragFloat3( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L599). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L599). """ DragFloat4( label, @@ -1496,7 +1496,7 @@ DragFloat4( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L600). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L600). """ DragFloatRange2( label, @@ -1515,7 +1515,7 @@ $(TYPEDSIGNATURES) If v_min >= v_max we have no bound. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L601). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L601). """ DragInt( label, @@ -1530,7 +1530,7 @@ DragInt( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L602). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L602). """ DragInt2( label, @@ -1545,7 +1545,7 @@ DragInt2( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L603). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L603). """ DragInt3( label, @@ -1560,7 +1560,7 @@ DragInt3( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L604). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L604). """ DragInt4( label, @@ -1575,7 +1575,7 @@ DragInt4( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L605). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L605). """ DragIntRange2( label, @@ -1592,7 +1592,7 @@ DragIntRange2( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L606). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L606). """ DragScalar( label, @@ -1608,7 +1608,7 @@ DragScalar( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L607). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L607). """ DragScalarN( label, @@ -1627,7 +1627,7 @@ $(TYPEDSIGNATURES) Adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L615). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L615). """ SliderFloat(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderFloat(label, v, v_min, v_max, format, flags) @@ -1635,7 +1635,7 @@ SliderFloat(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderFl """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L616). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L616). """ SliderFloat2(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderFloat2(label, v, v_min, v_max, format, flags) @@ -1643,7 +1643,7 @@ SliderFloat2(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderF """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L617). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L617). """ SliderFloat3(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderFloat3(label, v, v_min, v_max, format, flags) @@ -1651,7 +1651,7 @@ SliderFloat3(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderF """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L618). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L618). """ SliderFloat4(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderFloat4(label, v, v_min, v_max, format, flags) @@ -1659,7 +1659,7 @@ SliderFloat4(label, v, v_min, v_max, format = "%.3f0", flags::Union{ImGuiSliderF """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L619). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L619). """ SliderAngle( label, @@ -1673,7 +1673,7 @@ SliderAngle( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L620). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L620). """ SliderInt(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderInt(label, v, v_min, v_max, format, flags) @@ -1681,7 +1681,7 @@ SliderInt(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags,I """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L621). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L621). """ SliderInt2(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderInt2(label, v, v_min, v_max, format, flags) @@ -1689,7 +1689,7 @@ SliderInt2(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags, """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L622). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L622). """ SliderInt3(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderInt3(label, v, v_min, v_max, format, flags) @@ -1697,7 +1697,7 @@ SliderInt3(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags, """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L623). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L623). """ SliderInt4(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags,ImGuiSliderFlags_,Integer} = 0) = igSliderInt4(label, v, v_min, v_max, format, flags) @@ -1705,7 +1705,7 @@ SliderInt4(label, v, v_min, v_max, format = "%d", flags::Union{ImGuiSliderFlags, """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L624). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L624). """ SliderScalar( label, @@ -1720,7 +1720,7 @@ SliderScalar( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L625). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L625). """ SliderScalarN( label, @@ -1736,7 +1736,7 @@ SliderScalarN( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L626). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L626). """ VSliderFloat( label, @@ -1751,7 +1751,7 @@ VSliderFloat( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L627). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L627). """ VSliderInt( label, @@ -1766,7 +1766,7 @@ VSliderInt( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L628). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L628). """ VSliderScalar( label, @@ -1782,7 +1782,7 @@ VSliderScalar( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L633). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L633). """ InputText( label, @@ -1796,7 +1796,7 @@ InputText( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L634). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L634). """ InputTextMultiline( label, @@ -1811,7 +1811,7 @@ InputTextMultiline( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L635). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L635). """ InputTextWithHint( label, @@ -1826,7 +1826,7 @@ InputTextWithHint( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L636). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L636). """ InputFloat( label, @@ -1840,7 +1840,7 @@ InputFloat( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L637). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L637). """ InputFloat2(label, v, format = "%.3f0", flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputFloat2(label, v, format, flags) @@ -1848,7 +1848,7 @@ InputFloat2(label, v, format = "%.3f0", flags::Union{ImGuiInputTextFlags,ImGuiIn """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L638). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L638). """ InputFloat3(label, v, format = "%.3f0", flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputFloat3(label, v, format, flags) @@ -1856,7 +1856,7 @@ InputFloat3(label, v, format = "%.3f0", flags::Union{ImGuiInputTextFlags,ImGuiIn """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L639). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L639). """ InputFloat4(label, v, format = "%.3f0", flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputFloat4(label, v, format, flags) @@ -1864,7 +1864,7 @@ InputFloat4(label, v, format = "%.3f0", flags::Union{ImGuiInputTextFlags,ImGuiIn """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L640). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L640). """ InputInt(label, v, step = 1, step_fast = 100, flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputInt(label, v, step, step_fast, flags) @@ -1872,28 +1872,28 @@ InputInt(label, v, step = 1, step_fast = 100, flags::Union{ImGuiInputTextFlags,I """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L641). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L641). """ InputInt2(label, v, flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputInt2(label, v, flags) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L642). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L642). """ InputInt3(label, v, flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputInt3(label, v, flags) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L643). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L643). """ InputInt4(label, v, flags::Union{ImGuiInputTextFlags,ImGuiInputTextFlags_,Integer} = 0) = igInputInt4(label, v, flags) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L644). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L644). """ InputDouble( label, @@ -1907,7 +1907,7 @@ InputDouble( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L645). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L645). """ InputScalar( label, @@ -1922,7 +1922,7 @@ InputScalar( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L646). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L646). """ InputScalarN( label, @@ -1938,7 +1938,7 @@ InputScalarN( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L651). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L651). """ ColorEdit3(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer} = 0) = igColorEdit3(label, col, flags) @@ -1946,7 +1946,7 @@ ColorEdit3(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Int """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L652). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L652). """ ColorEdit4(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer} = 0) = igColorEdit4(label, col, flags) @@ -1954,7 +1954,7 @@ ColorEdit4(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Int """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L653). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L653). """ ColorPicker3(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer} = 0) = igColorPicker3(label, col, flags) @@ -1962,7 +1962,7 @@ ColorPicker3(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,I """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L654). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L654). """ ColorPicker4(label, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer} = 0, ref_col = C_NULL) = igColorPicker4(label, col, flags, ref_col) @@ -1972,7 +1972,7 @@ $(TYPEDSIGNATURES) Display a color square/button, hover for details, return true when pressed. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L655). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L655). """ ColorButton( desc_id, @@ -1986,14 +1986,14 @@ $(TYPEDSIGNATURES) Initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L656). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L656). """ SetColorEditOptions(flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer}) = igSetColorEditOptions(flags) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L660). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L660). """ TreeNode(label::Union{String,Ptr{Cchar}}) = igTreeNode_Str(label) @@ -2002,7 +2002,7 @@ $(TYPEDSIGNATURES) 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(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L661). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L661). """ TreeNode(str_id::Union{String,Ptr{Cchar}}, fmt::Union{String,Ptr{Cchar},Ptr{Cvoid}}) = igTreeNode_StrStr(str_id, fmt) @@ -2011,14 +2011,14 @@ $(TYPEDSIGNATURES) ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L662). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L662). """ TreeNode(ptr_id::PtrOrRef{Cvoid}, fmt::Union{String,Ptr{Cchar},Ptr{Cvoid}}) = igTreeNode_Ptr(ptr_id, fmt) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L665). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L665). """ TreeNodeEx(label::Union{String,Ptr{Cchar}}, flags::Union{ImGuiTreeNodeFlags,ImGuiTreeNodeFlags_,Integer} = 0) = igTreeNodeEx_Str(label, flags) @@ -2026,7 +2026,7 @@ TreeNodeEx(label::Union{String,Ptr{Cchar}}, flags::Union{ImGuiTreeNodeFlags,ImGu """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L666). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L666). """ TreeNodeEx( str_id::Union{String,Ptr{Cchar}}, @@ -2037,7 +2037,7 @@ TreeNodeEx( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L667). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L667). """ TreeNodeEx( ptr_id::PtrOrRef{Cvoid}, @@ -2050,7 +2050,7 @@ $(TYPEDSIGNATURES) ~ Indent()+PushID(). Already called by TreeNode() when returning true, but you can call TreePush/TreePop yourself if desired. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L670). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L670). """ TreePush(str_id::Union{String,Ptr{Cchar}}) = igTreePush_Str(str_id) @@ -2059,7 +2059,7 @@ $(TYPEDSIGNATURES) ". -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L671). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L671). """ TreePush(ptr_id::PtrOrRef{Cvoid}) = igTreePush_Ptr(ptr_id) @@ -2068,7 +2068,7 @@ $(TYPEDSIGNATURES) ~ Unindent()+PopID(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L672). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L672). """ TreePop() = igTreePop() @@ -2077,7 +2077,7 @@ $(TYPEDSIGNATURES) Horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L673). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L673). """ GetTreeNodeToLabelSpacing() = igGetTreeNodeToLabelSpacing() @@ -2086,7 +2086,7 @@ $(TYPEDSIGNATURES) If returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L674). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L674). """ CollapsingHeader( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2098,7 +2098,7 @@ $(TYPEDSIGNATURES) When 'p_visible != NULL': if '*p_visible==true' display an additional small close button on upper right of the header which will set the bool to false when clicked, if '*p_visible==false' don't display the header. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L675). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L675). """ CollapsingHeader( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2111,7 +2111,7 @@ $(TYPEDSIGNATURES) Set next TreeNode/CollapsingHeader open state. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L676). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L676). """ SetNextItemOpen(is_open, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetNextItemOpen(is_open, cond) @@ -2120,7 +2120,7 @@ $(TYPEDSIGNATURES) Set id to use for open/close storage (default to same as item id). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L677). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L677). """ SetNextItemStorageID(storage_id::Union{ImGuiID,Integer}) = igSetNextItemStorageID(storage_id) @@ -2129,7 +2129,7 @@ $(TYPEDSIGNATURES) "bool selected" carry the selection state (read-only). Selectable() is clicked is returns true so you can modify your selection state. size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L682). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L682). """ Selectable( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2143,7 +2143,7 @@ $(TYPEDSIGNATURES) "bool* p_selected" point to the selection state (read-write), as a convenient helper. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L683). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L683). """ Selectable( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2155,7 +2155,7 @@ Selectable( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L692). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L692). """ BeginMultiSelect( flags::Union{ImGuiMultiSelectFlags,ImGuiMultiSelectFlags_,Integer}, @@ -2166,14 +2166,14 @@ BeginMultiSelect( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L693). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L693). """ EndMultiSelect() = igEndMultiSelect() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L694). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L694). """ SetNextItemSelectionUserData(selection_user_data::ImGuiSelectionUserData) = igSetNextItemSelectionUserData(selection_user_data) @@ -2183,7 +2183,7 @@ $(TYPEDSIGNATURES) Was the last item selection state toggled? Useful if you need the per-item information _before_ reaching EndMultiSelect(). We only returns toggle _event_ in order to handle clipping correctly. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L695). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L695). """ IsItemToggledSelection() = igIsItemToggledSelection() @@ -2192,7 +2192,7 @@ $(TYPEDSIGNATURES) Open a framed scrolling region. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L703). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L703). """ BeginListBox(label, size::Union{ImVec2,NTuple{2}} = ImVec2(0, 0)) = igBeginListBox(label, size) @@ -2201,14 +2201,14 @@ $(TYPEDSIGNATURES) Only call EndListBox() if BeginListBox() returned true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L704). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L704). """ EndListBox() = igEndListBox() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L705). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L705). """ ListBox( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2220,28 +2220,28 @@ ListBox( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L717). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L717). """ Value(prefix::Union{String,Ptr{Cchar},Ptr{Cvoid}}, b::Bool) = igValue_Bool(prefix, b) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L718). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L718). """ Value(prefix::Union{String,Ptr{Cchar},Ptr{Cvoid}}, v::Int) = igValue_Int(prefix, v) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L719). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L719). """ Value(prefix::Union{String,Ptr{Cchar},Ptr{Cvoid}}, v::UInt) = igValue_Uint(prefix, v) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L720). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L720). """ Value( prefix::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2254,7 +2254,7 @@ $(TYPEDSIGNATURES) Append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L727). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L727). """ BeginMenuBar() = igBeginMenuBar() @@ -2263,7 +2263,7 @@ $(TYPEDSIGNATURES) Only call EndMenuBar() if BeginMenuBar() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L728). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L728). """ EndMenuBar() = igEndMenuBar() @@ -2272,7 +2272,7 @@ $(TYPEDSIGNATURES) Create and append to a full screen menu-bar. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L729). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L729). """ BeginMainMenuBar() = igBeginMainMenuBar() @@ -2281,7 +2281,7 @@ $(TYPEDSIGNATURES) Only call EndMainMenuBar() if BeginMainMenuBar() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L730). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L730). """ EndMainMenuBar() = igEndMainMenuBar() @@ -2290,7 +2290,7 @@ $(TYPEDSIGNATURES) Create a sub-menu entry. only call EndMenu() if this returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L731). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L731). """ BeginMenu(label, enabled = true) = igBeginMenu(label, enabled) @@ -2299,7 +2299,7 @@ $(TYPEDSIGNATURES) Only call EndMenu() if BeginMenu() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L732). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L732). """ EndMenu() = igEndMenu() @@ -2308,7 +2308,7 @@ $(TYPEDSIGNATURES) Return true when activated. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L733). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L733). """ MenuItem( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2322,7 +2322,7 @@ $(TYPEDSIGNATURES) Return true when activated + toggle (*p_selected) if p_selected != NULL. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L734). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L734). """ MenuItem( label::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2336,7 +2336,7 @@ $(TYPEDSIGNATURES) Begin/append a tooltip window. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L740). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L740). """ BeginTooltip() = igBeginTooltip() @@ -2345,7 +2345,7 @@ $(TYPEDSIGNATURES) Only call EndTooltip() if BeginTooltip()/BeginItemTooltip() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L741). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L741). """ EndTooltip() = igEndTooltip() @@ -2354,7 +2354,7 @@ $(TYPEDSIGNATURES) Set a text-only tooltip. Often used after a ImGui::IsItemHovered() check. Override any previous call to SetTooltip(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L742). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L742). """ SetTooltip(fmt) = igSetTooltip(fmt) @@ -2363,7 +2363,7 @@ $(TYPEDSIGNATURES) Begin/append a tooltip window if preceding item was hovered. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L749). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L749). """ BeginItemTooltip() = igBeginItemTooltip() @@ -2372,7 +2372,7 @@ $(TYPEDSIGNATURES) Set a text-only tooltip if preceding item was hovered. override any previous call to SetTooltip(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L750). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L750). """ SetItemTooltip(fmt) = igSetItemTooltip(fmt) @@ -2381,7 +2381,7 @@ $(TYPEDSIGNATURES) Return true if the popup is open, and you can start outputting to it. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L763). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L763). """ BeginPopup(str_id, flags::Union{ImGuiWindowFlags,ImGuiWindowFlags_,Integer} = 0) = igBeginPopup(str_id, flags) @@ -2390,7 +2390,7 @@ $(TYPEDSIGNATURES) Return true if the modal is open, and you can start outputting to it. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L764). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L764). """ BeginPopupModal(name, p_open = C_NULL, flags::Union{ImGuiWindowFlags,ImGuiWindowFlags_,Integer} = 0) = igBeginPopupModal(name, p_open, flags) @@ -2400,7 +2400,7 @@ $(TYPEDSIGNATURES) Only call EndPopup() if BeginPopupXXX() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L765). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L765). """ EndPopup() = igEndPopup() @@ -2409,7 +2409,7 @@ $(TYPEDSIGNATURES) Call to mark popup as open (don't call every frame!). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L775). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L775). """ OpenPopup( str_id::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -2421,7 +2421,7 @@ $(TYPEDSIGNATURES) Id overload to facilitate calling from nested stacks. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L776). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L776). """ OpenPopup(id::Union{ImGuiID,Integer}, popup_flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer} = 0) = igOpenPopup_ID(id, popup_flags) @@ -2431,7 +2431,7 @@ $(TYPEDSIGNATURES) Helper to open popup when clicked on last item. Default to ImGuiPopupFlags_MouseButtonRight == 1. (note: actually triggers on the mouse _released_ event to be consistent with popup behaviors). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L777). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L777). """ OpenPopupOnItemClick(str_id = C_NULL, popup_flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer} = 1) = igOpenPopupOnItemClick(str_id, popup_flags) @@ -2441,7 +2441,7 @@ $(TYPEDSIGNATURES) Manually close the popup we have begin-ed into. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L778). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L778). """ CloseCurrentPopup() = igCloseCurrentPopup() @@ -2450,7 +2450,7 @@ $(TYPEDSIGNATURES) Open+begin popup when clicked on last item. Use str_id==NULL to associate the popup to previous item. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L785). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L785). """ BeginPopupContextItem(str_id = C_NULL, popup_flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer} = 1) = igBeginPopupContextItem(str_id, popup_flags) @@ -2460,7 +2460,7 @@ $(TYPEDSIGNATURES) Open+begin popup when clicked on current window. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L786). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L786). """ BeginPopupContextWindow(str_id = C_NULL, popup_flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer} = 1) = igBeginPopupContextWindow(str_id, popup_flags) @@ -2470,7 +2470,7 @@ $(TYPEDSIGNATURES) Open+begin popup when clicked in void (where there are no windows). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L787). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L787). """ BeginPopupContextVoid(str_id = C_NULL, popup_flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer} = 1) = igBeginPopupContextVoid(str_id, popup_flags) @@ -2480,7 +2480,7 @@ $(TYPEDSIGNATURES) Return true if the popup is open. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L793). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L793). """ IsPopupOpen(str_id::Union{String,Ptr{Cchar},Ptr{Cvoid}}, flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer} = 0) = igIsPopupOpen_Str(str_id, flags) @@ -2488,7 +2488,7 @@ IsPopupOpen(str_id::Union{String,Ptr{Cchar},Ptr{Cvoid}}, flags::Union{ImGuiPopup """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L816). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L816). """ BeginTable( str_id, @@ -2503,7 +2503,7 @@ $(TYPEDSIGNATURES) Only call EndTable() if BeginTable() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L817). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L817). """ EndTable() = igEndTable() @@ -2512,7 +2512,7 @@ $(TYPEDSIGNATURES) Append into the first cell of a new row. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L818). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L818). """ TableNextRow(row_flags::Union{ImGuiTableRowFlags,ImGuiTableRowFlags_,Integer} = 0, min_row_height = 0.0f0) = igTableNextRow(row_flags, min_row_height) @@ -2522,7 +2522,7 @@ $(TYPEDSIGNATURES) Append into the next column (or first column of next row if currently in last column). Return true when column is visible. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L819). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L819). """ TableNextColumn() = igTableNextColumn() @@ -2531,14 +2531,14 @@ $(TYPEDSIGNATURES) Append into the specified column. Return true when column is visible. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L820). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L820). """ TableSetColumnIndex(column_n) = igTableSetColumnIndex(column_n) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L830). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L830). """ TableSetupColumn( label, @@ -2552,7 +2552,7 @@ $(TYPEDSIGNATURES) Lock columns/rows so they stay visible when scrolled. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L831). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L831). """ TableSetupScrollFreeze(cols, rows) = igTableSetupScrollFreeze(cols, rows) @@ -2561,7 +2561,7 @@ $(TYPEDSIGNATURES) Submit one header cell manually (rarely used). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L832). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L832). """ TableHeader(label) = igTableHeader(label) @@ -2570,7 +2570,7 @@ $(TYPEDSIGNATURES) Submit a row with headers cells based on data provided to TableSetupColumn() + submit context menu. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L833). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L833). """ TableHeadersRow() = igTableHeadersRow() @@ -2579,7 +2579,7 @@ $(TYPEDSIGNATURES) Submit a row with angled headers for every column with the ImGuiTableColumnFlags_AngledHeader flag. MUST BE FIRST ROW. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L834). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L834). """ TableAngledHeadersRow() = igTableAngledHeadersRow() @@ -2588,7 +2588,7 @@ $(TYPEDSIGNATURES) Get latest sort specs for the table (NULL if not sorting). Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L842). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L842). """ TableGetSortSpecs() = igTableGetSortSpecs() @@ -2597,7 +2597,7 @@ $(TYPEDSIGNATURES) Return number of columns (value passed to BeginTable). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L843). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L843). """ TableGetColumnCount() = igTableGetColumnCount() @@ -2606,7 +2606,7 @@ $(TYPEDSIGNATURES) Return current column index. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L844). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L844). """ TableGetColumnIndex() = igTableGetColumnIndex() @@ -2615,7 +2615,7 @@ $(TYPEDSIGNATURES) Return current row index. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L845). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L845). """ TableGetRowIndex() = igTableGetRowIndex() @@ -2624,7 +2624,7 @@ $(TYPEDSIGNATURES) Return "" if column didn't have a name declared by TableSetupColumn(). Pass -1 to use current column. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L846). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L846). """ TableGetColumnName(column_n::Integer = -1) = igTableGetColumnName_Int(column_n) @@ -2633,7 +2633,7 @@ $(TYPEDSIGNATURES) Return column flags so you can query their Enabled/Visible/Sorted/Hovered status flags. Pass -1 to use current column. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L847). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L847). """ TableGetColumnFlags(column_n = -1) = igTableGetColumnFlags(column_n) @@ -2642,7 +2642,7 @@ $(TYPEDSIGNATURES) Change user accessible enabled/disabled state of a column. Set to false to hide the column. User can use the context menu to change this themselves (right-click in headers, or right-click in columns body with ImGuiTableFlags_ContextMenuInBody). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L848). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L848). """ TableSetColumnEnabled(column_n, v) = igTableSetColumnEnabled(column_n, v) @@ -2651,7 +2651,7 @@ $(TYPEDSIGNATURES) Return hovered column. return -1 when table is not hovered. return columns_count if the unused space at the right of visible columns is hovered. Can also use (TableGetColumnFlags() & ImGuiTableColumnFlags_IsHovered) instead. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L849). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L849). """ TableGetHoveredColumn() = igTableGetHoveredColumn() @@ -2660,7 +2660,7 @@ $(TYPEDSIGNATURES) Change the color of a cell, row, or column. See ImGuiTableBgTarget_ flags for details. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L850). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L850). """ TableSetBgColor( target::Union{ImGuiTableBgTarget,ImGuiTableBgTarget_,Integer}, @@ -2671,7 +2671,7 @@ TableSetBgColor( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L854). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L854). """ Columns(count = 1, id = C_NULL, borders = true) = igColumns(count, id, borders) @@ -2680,7 +2680,7 @@ $(TYPEDSIGNATURES) Next column, defaults to current row or next row if the current row is finished. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L855). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L855). """ NextColumn() = igNextColumn() @@ -2689,7 +2689,7 @@ $(TYPEDSIGNATURES) Get current column index. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L856). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L856). """ GetColumnIndex() = igGetColumnIndex() @@ -2698,7 +2698,7 @@ $(TYPEDSIGNATURES) Get column width (in pixels). pass -1 to use current column. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L857). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L857). """ GetColumnWidth(column_index = -1) = igGetColumnWidth(column_index) @@ -2707,7 +2707,7 @@ $(TYPEDSIGNATURES) Set column width (in pixels). pass -1 to use current column. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L858). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L858). """ SetColumnWidth(column_index, width) = igSetColumnWidth(column_index, width) @@ -2716,7 +2716,7 @@ $(TYPEDSIGNATURES) Get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L859). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L859). """ GetColumnOffset(column_index = -1) = igGetColumnOffset(column_index) @@ -2725,14 +2725,14 @@ $(TYPEDSIGNATURES) Set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L860). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L860). """ SetColumnOffset(column_index, offset_x) = igSetColumnOffset(column_index, offset_x) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L861). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L861). """ GetColumnsCount() = igGetColumnsCount() @@ -2741,7 +2741,7 @@ $(TYPEDSIGNATURES) Create and append into a TabBar. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L865). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L865). """ BeginTabBar(str_id, flags::Union{ImGuiTabBarFlags,ImGuiTabBarFlags_,Integer} = 0) = igBeginTabBar(str_id, flags) @@ -2750,7 +2750,7 @@ $(TYPEDSIGNATURES) Only call EndTabBar() if BeginTabBar() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L866). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L866). """ EndTabBar() = igEndTabBar() @@ -2759,7 +2759,7 @@ $(TYPEDSIGNATURES) Create a Tab. Returns true if the Tab is selected. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L867). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L867). """ BeginTabItem(label, p_open = C_NULL, flags::Union{ImGuiTabItemFlags,ImGuiTabItemFlags_,Integer} = 0) = igBeginTabItem(label, p_open, flags) @@ -2769,7 +2769,7 @@ $(TYPEDSIGNATURES) Only call EndTabItem() if BeginTabItem() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L868). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L868). """ EndTabItem() = igEndTabItem() @@ -2778,7 +2778,7 @@ $(TYPEDSIGNATURES) Create a Tab behaving like a button. return true when clicked. cannot be selected in the tab bar. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L869). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L869). """ TabItemButton(label, flags::Union{ImGuiTabItemFlags,ImGuiTabItemFlags_,Integer} = 0) = igTabItemButton(label, flags) @@ -2787,14 +2787,14 @@ $(TYPEDSIGNATURES) 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. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L870). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L870). """ SetTabItemClosed(tab_or_docked_window_label) = igSetTabItemClosed(tab_or_docked_window_label) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L885). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L885). """ DockSpace( dockspace_id::Union{ImGuiID,Integer}, @@ -2806,7 +2806,7 @@ DockSpace( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L886). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L886). """ DockSpaceOverViewport( dockspace_id::Union{ImGuiID,Integer} = 0, @@ -2820,7 +2820,7 @@ $(TYPEDSIGNATURES) Set next window dock id. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L887). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L887). """ SetNextWindowDockID(dock_id::Union{ImGuiID,Integer}, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetNextWindowDockID(dock_id, cond) @@ -2830,14 +2830,14 @@ $(TYPEDSIGNATURES) Set next window class (control docking compatibility + provide hints to platform backend via custom viewport flags and platform parent/child relationship). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L888). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L888). """ SetNextWindowClass(window_class::VoidablePtrOrRef{ImGuiWindowClass}) = igSetNextWindowClass(window_class) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L889). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L889). """ GetWindowDockID() = igGetWindowDockID() @@ -2846,7 +2846,7 @@ $(TYPEDSIGNATURES) Is current window docked into another window? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L890). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L890). """ IsWindowDocked() = igIsWindowDocked() @@ -2855,7 +2855,7 @@ $(TYPEDSIGNATURES) Start logging to tty (stdout). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L894). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L894). """ LogToTTY(auto_open_depth = -1) = igLogToTTY(auto_open_depth) @@ -2864,7 +2864,7 @@ $(TYPEDSIGNATURES) Start logging to file. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L895). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L895). """ LogToFile(auto_open_depth = -1, filename = C_NULL) = igLogToFile(auto_open_depth, filename) @@ -2873,7 +2873,7 @@ $(TYPEDSIGNATURES) Start logging to OS clipboard. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L896). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L896). """ LogToClipboard(auto_open_depth = -1) = igLogToClipboard(auto_open_depth) @@ -2882,7 +2882,7 @@ $(TYPEDSIGNATURES) Stop logging (close file, etc.). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L897). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L897). """ LogFinish() = igLogFinish() @@ -2891,7 +2891,7 @@ $(TYPEDSIGNATURES) Helper to display buttons for logging to tty/file/clipboard. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L898). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L898). """ LogButtons() = igLogButtons() @@ -2900,7 +2900,7 @@ $(TYPEDSIGNATURES) Call after submitting an item which may be dragged. when this return true, you can call SetDragDropPayload() + EndDragDropSource(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L907). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L907). """ BeginDragDropSource(flags::Union{ImGuiDragDropFlags,ImGuiDragDropFlags_,Integer} = 0) = igBeginDragDropSource(flags) @@ -2909,7 +2909,7 @@ $(TYPEDSIGNATURES) Type is a user defined string of maximum 32 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui. Return true when payload has been accepted. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L908). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L908). """ SetDragDropPayload(type, data, sz, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetDragDropPayload(type, data, sz, cond) @@ -2919,7 +2919,7 @@ $(TYPEDSIGNATURES) Only call EndDragDropSource() if BeginDragDropSource() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L909). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L909). """ EndDragDropSource() = igEndDragDropSource() @@ -2928,7 +2928,7 @@ $(TYPEDSIGNATURES) Call after submitting an item that may receive a payload. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L910). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L910). """ BeginDragDropTarget() = igBeginDragDropTarget() @@ -2937,7 +2937,7 @@ $(TYPEDSIGNATURES) Accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L911). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L911). """ AcceptDragDropPayload(type, flags::Union{ImGuiDragDropFlags,ImGuiDragDropFlags_,Integer} = 0) = igAcceptDragDropPayload(type, flags) @@ -2947,7 +2947,7 @@ $(TYPEDSIGNATURES) Only call EndDragDropTarget() if BeginDragDropTarget() returns true! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L912). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L912). """ EndDragDropTarget() = igEndDragDropTarget() @@ -2956,28 +2956,28 @@ $(TYPEDSIGNATURES) Peek directly into the current payload from anywhere. returns NULL when drag and drop is finished or inactive. use ImGuiPayload::IsDataType() to test for the payload type. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L913). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L913). """ GetDragDropPayload() = igGetDragDropPayload() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L920). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L920). """ BeginDisabled(disabled = true) = igBeginDisabled(disabled) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L921). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L921). """ EndDisabled() = igEndDisabled() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L925). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L925). """ PushClipRect( clip_rect_min::Union{ImVec2,NTuple{2}}, @@ -2988,7 +2988,7 @@ PushClipRect( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L926). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L926). """ PopClipRect() = igPopClipRect() @@ -2997,7 +2997,7 @@ $(TYPEDSIGNATURES) Make last item the default focused item of a window. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L930). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L930). """ SetItemDefaultFocus() = igSetItemDefaultFocus() @@ -3006,7 +3006,7 @@ $(TYPEDSIGNATURES) Focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L931). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L931). """ SetKeyboardFocusHere(offset = 0) = igSetKeyboardFocusHere(offset) @@ -3015,7 +3015,7 @@ $(TYPEDSIGNATURES) Allow next item to be overlapped by a subsequent item. Useful with invisible buttons, selectable, treenode covering an area where subsequent items may need to be added. Note that both Selectable() and TreeNode() have dedicated flags doing this. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L934). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L934). """ SetNextItemAllowOverlap() = igSetNextItemAllowOverlap() @@ -3024,7 +3024,7 @@ $(TYPEDSIGNATURES) Is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L939). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L939). """ IsItemHovered(flags::Union{ImGuiHoveredFlags,ImGuiHoveredFlags_,Integer} = 0) = igIsItemHovered(flags) @@ -3033,7 +3033,7 @@ $(TYPEDSIGNATURES) Is the last item active? (e.g. button being held, text field being edited. This will continuously return true while holding mouse button on an item. Items that don't interact will always return false). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L940). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L940). """ IsItemActive() = igIsItemActive() @@ -3042,7 +3042,7 @@ $(TYPEDSIGNATURES) Is the last item focused for keyboard/gamepad navigation? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L941). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L941). """ IsItemFocused() = igIsItemFocused() @@ -3051,7 +3051,7 @@ $(TYPEDSIGNATURES) Is the last item hovered and mouse clicked on? (**) == IsMouseClicked(mouse_button) && IsItemHovered()Important. (**) this is NOT equivalent to the behavior of e.g. Button(). Read comments in function definition. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L942). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L942). """ IsItemClicked(mouse_button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer} = 0) = igIsItemClicked(mouse_button) @@ -3060,7 +3060,7 @@ $(TYPEDSIGNATURES) Is the last item visible? (items may be out of sight because of clipping/scrolling). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L943). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L943). """ IsItemVisible() = igIsItemVisible() @@ -3069,7 +3069,7 @@ $(TYPEDSIGNATURES) Did the last item modify its underlying value this frame? or was pressed? This is generally the same as the "bool" return value of many widgets. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L944). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L944). """ IsItemEdited() = igIsItemEdited() @@ -3078,7 +3078,7 @@ $(TYPEDSIGNATURES) Was the last item just made active (item was previously inactive). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L945). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L945). """ IsItemActivated() = igIsItemActivated() @@ -3087,7 +3087,7 @@ $(TYPEDSIGNATURES) Was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that require continuous editing. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L946). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L946). """ IsItemDeactivated() = igIsItemDeactivated() @@ -3096,7 +3096,7 @@ $(TYPEDSIGNATURES) Was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that require continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L947). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L947). """ IsItemDeactivatedAfterEdit() = igIsItemDeactivatedAfterEdit() @@ -3105,7 +3105,7 @@ $(TYPEDSIGNATURES) Was the last item open state toggled? set by TreeNode(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L948). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L948). """ IsItemToggledOpen() = igIsItemToggledOpen() @@ -3114,7 +3114,7 @@ $(TYPEDSIGNATURES) Is any item hovered? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L949). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L949). """ IsAnyItemHovered() = igIsAnyItemHovered() @@ -3123,7 +3123,7 @@ $(TYPEDSIGNATURES) Is any item active? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L950). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L950). """ IsAnyItemActive() = igIsAnyItemActive() @@ -3132,7 +3132,7 @@ $(TYPEDSIGNATURES) Is any item focused? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L951). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L951). """ IsAnyItemFocused() = igIsAnyItemFocused() @@ -3141,7 +3141,7 @@ $(TYPEDSIGNATURES) Get ID of last item (~~ often same ImGui::GetID(label) beforehand). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L952). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L952). """ GetItemID() = igGetItemID() @@ -3150,7 +3150,7 @@ $(TYPEDSIGNATURES) Get upper-left bounding rectangle of the last item (screen space). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L953). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L953). """ function GetItemRectMin() pOut = Ref{ImVec2}() @@ -3163,7 +3163,7 @@ $(TYPEDSIGNATURES) Get lower-right bounding rectangle of the last item (screen space). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L954). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L954). """ function GetItemRectMax() pOut = Ref{ImVec2}() @@ -3176,7 +3176,7 @@ $(TYPEDSIGNATURES) Get size of last item. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L955). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L955). """ function GetItemRectSize() pOut = Ref{ImVec2}() @@ -3189,7 +3189,7 @@ $(TYPEDSIGNATURES) Return primary/default viewport. This can never be NULL. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L961). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L961). """ GetMainViewport() = igGetMainViewport() @@ -3198,7 +3198,7 @@ $(TYPEDSIGNATURES) Get background draw list for the given viewport or viewport associated to the current window. this draw list will be the first rendering one. Useful to quickly draw shapes/text behind dear imgui contents. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L964). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L964). """ GetBackgroundDrawList(viewport::VoidablePtrOrRef{ImGuiViewport} = C_NULL) = igGetBackgroundDrawList(viewport) @@ -3207,7 +3207,7 @@ $(TYPEDSIGNATURES) Get foreground draw list for the given viewport or viewport associated to the current window. this draw list will be the top-most rendered one. Useful to quickly draw shapes/text over dear imgui contents. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L965). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L965). """ GetForegroundDrawList(viewport::VoidablePtrOrRef{ImGuiViewport} = C_NULL) = igGetForegroundDrawList_ViewportPtr(viewport) @@ -3217,7 +3217,7 @@ $(TYPEDSIGNATURES) Test if rectangle (of given size, starting from cursor position) is visible / not clipped. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L968). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L968). """ IsRectVisible(size::Union{ImVec2,NTuple{2}}) = igIsRectVisible_Nil(size) @@ -3226,7 +3226,7 @@ $(TYPEDSIGNATURES) Test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L969). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L969). """ IsRectVisible(rect_min::Union{ImVec2,NTuple{2}}, rect_max::Union{ImVec2,NTuple{2}}) = igIsRectVisible_Vec2(rect_min, rect_max) @@ -3236,7 +3236,7 @@ $(TYPEDSIGNATURES) Get global imgui time. incremented by io.DeltaTime every frame. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L970). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L970). """ GetTime() = igGetTime() @@ -3245,7 +3245,7 @@ $(TYPEDSIGNATURES) Get global imgui frame count. incremented by 1 every frame. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L971). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L971). """ GetFrameCount() = igGetFrameCount() @@ -3254,7 +3254,7 @@ $(TYPEDSIGNATURES) You may use this when creating your own ImDrawList instances. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L972). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L972). """ GetDrawListSharedData() = igGetDrawListSharedData() @@ -3263,7 +3263,7 @@ $(TYPEDSIGNATURES) Get a string corresponding to the enum value (for display, saving, etc.). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L973). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L973). """ GetStyleColorName(idx::Union{ImGuiCol,ImGuiCol_,Integer}) = igGetStyleColorName(idx) @@ -3272,21 +3272,21 @@ $(TYPEDSIGNATURES) Replace current window storage with our own (if you want to manipulate it yourself, typically clear subsection of it). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L974). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L974). """ SetStateStorage(storage::VoidablePtrOrRef{ImGuiStorage}) = igSetStateStorage(storage) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L975). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L975). """ GetStateStorage() = igGetStateStorage() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L978). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L978). """ function CalcTextSize(text, text_end = C_NULL, hide_text_after_double_hash = false, wrap_width = -1.0f0) pOut = Ref{ImVec2}() @@ -3297,7 +3297,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L981). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L981). """ function ColorConvertU32ToFloat4(in::Union{ImU32,Integer}) pOut = Ref{ImVec4}() @@ -3308,21 +3308,21 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L982). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L982). """ ColorConvertFloat4ToU32(in::Union{ImVec4,NTuple{4}}) = igColorConvertFloat4ToU32(in) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L983). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L983). """ ColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v) = igColorConvertRGBtoHSV(r, g, b, out_h, out_s, out_v) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L984). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L984). """ ColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b) = igColorConvertHSVtoRGB(h, s, v, out_r, out_g, out_b) @@ -3331,7 +3331,7 @@ $(TYPEDSIGNATURES) Is key being held. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L991). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L991). """ IsKeyDown(key::ImGuiKey) = igIsKeyDown_Nil(key) @@ -3340,7 +3340,7 @@ $(TYPEDSIGNATURES) Was key pressed (went from !Down to Down)? if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L992). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L992). """ IsKeyPressed(key::ImGuiKey, repeat::Bool = true) = igIsKeyPressed_Bool(key, repeat) @@ -3349,7 +3349,7 @@ $(TYPEDSIGNATURES) Was key released (went from Down to !Down)? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L993). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L993). """ IsKeyReleased(key::ImGuiKey) = igIsKeyReleased_Nil(key) @@ -3358,7 +3358,7 @@ $(TYPEDSIGNATURES) Was key chord (mods + key) pressed, e.g. you can pass 'ImGuiMod_Ctrl | ImGuiKey_S' as a key-chord. This doesn't do any routing or focus check, please consider using Shortcut() function instead. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L994). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L994). """ IsKeyChordPressed(key_chord::Union{ImGuiKeyChord,Integer}) = igIsKeyChordPressed_Nil(key_chord) @@ -3367,7 +3367,7 @@ $(TYPEDSIGNATURES) Uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L995). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L995). """ GetKeyPressedAmount(key::ImGuiKey, repeat_delay, rate) = igGetKeyPressedAmount(key, repeat_delay, rate) @@ -3376,7 +3376,7 @@ $(TYPEDSIGNATURES) [DEBUG] returns English name of the key. Those names a provided for debugging purpose and are not meant to be saved persistently not compared. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L996). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L996). """ GetKeyName(key::ImGuiKey) = igGetKeyName(key) @@ -3385,14 +3385,14 @@ $(TYPEDSIGNATURES) Override io.WantCaptureKeyboard flag next frame (said flag is left for your application to handle, typically when true it instructs your app to ignore inputs). e.g. force capture keyboard when your widget is being hovered. This is equivalent to setting "io.WantCaptureKeyboard = want_capture_keyboard"; after the next NewFrame() call. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L997). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L997). """ SetNextFrameWantCaptureKeyboard(want_capture_keyboard) = igSetNextFrameWantCaptureKeyboard(want_capture_keyboard) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1014). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1014). """ Shortcut(key_chord::Union{ImGuiKeyChord,Integer}, flags::Union{ImGuiInputFlags,ImGuiInputFlags_,Integer} = 0) = igShortcut_Nil(key_chord, flags) @@ -3400,7 +3400,7 @@ Shortcut(key_chord::Union{ImGuiKeyChord,Integer}, flags::Union{ImGuiInputFlags,I """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1015). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1015). """ SetNextItemShortcut( key_chord::Union{ImGuiKeyChord,Integer}, @@ -3412,7 +3412,7 @@ $(TYPEDSIGNATURES) Set key owner to last item ID if it is hovered or active. Equivalent to 'if (IsItemHovered() || IsItemActive()) SetKeyOwner(key, GetItemID());'. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1023). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1023). """ SetItemKeyOwner(key::ImGuiKey) = igSetItemKeyOwner_Nil(key) @@ -3421,7 +3421,7 @@ $(TYPEDSIGNATURES) Is mouse button held? -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1029). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1029). """ IsMouseDown(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}) = igIsMouseDown_Nil(button) @@ -3430,7 +3430,7 @@ $(TYPEDSIGNATURES) Did mouse button clicked? (went from !Down to Down). Same as GetMouseClickedCount() == 1. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1030). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1030). """ IsMouseClicked(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, repeat::Bool = false) = igIsMouseClicked_Bool(button, repeat) @@ -3440,7 +3440,7 @@ $(TYPEDSIGNATURES) Did mouse button released? (went from Down to !Down). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1031). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1031). """ IsMouseReleased(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}) = igIsMouseReleased_Nil(button) @@ -3449,7 +3449,7 @@ $(TYPEDSIGNATURES) Did mouse button double-clicked? Same as GetMouseClickedCount() == 2. (note that a double-click will also report IsMouseClicked() == true). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1032). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1032). """ IsMouseDoubleClicked(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}) = igIsMouseDoubleClicked_Nil(button) @@ -3458,7 +3458,7 @@ $(TYPEDSIGNATURES) Return the number of successive mouse-clicks at the time where a click happen (otherwise 0). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1033). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1033). """ GetMouseClickedCount(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}) = igGetMouseClickedCount(button) @@ -3467,7 +3467,7 @@ $(TYPEDSIGNATURES) Is mouse hovering given bounding rect (in screen space). clipped by current clipping settings, but disregarding of other consideration of focus/window ordering/popup-block. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1034). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1034). """ IsMouseHoveringRect(r_min::Union{ImVec2,NTuple{2}}, r_max::Union{ImVec2,NTuple{2}}, clip = true) = igIsMouseHoveringRect(r_min, r_max, clip) @@ -3477,7 +3477,7 @@ $(TYPEDSIGNATURES) By convention we use (-FLT_MAX,-FLT_MAX) to denote that there is no mouse available. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1035). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1035). """ IsMousePosValid(mouse_pos::Union{VoidablePtrOrRef{ImVec2},VoidablePtrOrRef{NTuple{2}}} = C_NULL) = igIsMousePosValid(mouse_pos) @@ -3487,7 +3487,7 @@ $(TYPEDSIGNATURES) [WILL OBSOLETE] is any mouse button held? This was designed for backends, but prefer having backend maintain a mask of held mouse buttons, because upcoming input queue system will make this invalid. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1036). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1036). """ IsAnyMouseDown() = igIsAnyMouseDown() @@ -3496,7 +3496,7 @@ $(TYPEDSIGNATURES) Shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1037). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1037). """ function GetMousePos() pOut = Ref{ImVec2}() @@ -3509,7 +3509,7 @@ $(TYPEDSIGNATURES) Retrieve mouse position at the time of opening popup we have BeginPopup() into (helper to avoid user backing that value themselves). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1038). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1038). """ function GetMousePosOnOpeningCurrentPopup() pOut = Ref{ImVec2}() @@ -3522,7 +3522,7 @@ $(TYPEDSIGNATURES) Is mouse dragging? (uses io.MouseDraggingThreshold if lock_threshold < 0.0f). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1039). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1039). """ IsMouseDragging(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, lock_threshold = -1.0f0) = igIsMouseDragging(button, lock_threshold) @@ -3532,7 +3532,7 @@ $(TYPEDSIGNATURES) Return the delta from the initial clicking position while the mouse button is pressed or was just released. This is locked and return 0.0f until the mouse moves past a distance threshold at least once (uses io.MouseDraggingThreshold if lock_threshold < 0.0f). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1040). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1040). """ function GetMouseDragDelta(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer} = 0, lock_threshold = -1.0f0) pOut = Ref{ImVec2}() @@ -3545,7 +3545,7 @@ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1041). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1041). """ ResetMouseDragDelta(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer} = 0) = igResetMouseDragDelta(button) @@ -3554,7 +3554,7 @@ $(TYPEDSIGNATURES) Get desired mouse cursor shape. Important: reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1042). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1042). """ GetMouseCursor() = igGetMouseCursor() @@ -3563,7 +3563,7 @@ $(TYPEDSIGNATURES) Set desired mouse cursor shape. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1043). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1043). """ SetMouseCursor(cursor_type::Union{ImGuiMouseCursor,ImGuiMouseCursor_,Integer}) = igSetMouseCursor(cursor_type) @@ -3572,21 +3572,21 @@ $(TYPEDSIGNATURES) Override io.WantCaptureMouse flag next frame (said flag is left for your application to handle, typical when true it instucts your app to ignore inputs). This is equivalent to setting "io.WantCaptureMouse = want_capture_mouse;" after the next NewFrame() call. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1044). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1044). """ SetNextFrameWantCaptureMouse(want_capture_mouse) = igSetNextFrameWantCaptureMouse(want_capture_mouse) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1048). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1048). """ GetClipboardText() = igGetClipboardText() """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1049). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1049). """ SetClipboardText(text) = igSetClipboardText(text) @@ -3595,7 +3595,7 @@ $(TYPEDSIGNATURES) Call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1055). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1055). """ LoadIniSettingsFromDisk(ini_filename) = igLoadIniSettingsFromDisk(ini_filename) @@ -3604,7 +3604,7 @@ $(TYPEDSIGNATURES) Call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1056). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1056). """ LoadIniSettingsFromMemory(ini_data, ini_size = 0) = igLoadIniSettingsFromMemory(ini_data, ini_size) @@ -3613,7 +3613,7 @@ $(TYPEDSIGNATURES) This is automatically called (if io.IniFilename is not empty) a few seconds after any modification that should be reflected in the .ini file (and also by DestroyContext). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1057). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1057). """ SaveIniSettingsToDisk(ini_filename) = igSaveIniSettingsToDisk(ini_filename) @@ -3622,28 +3622,28 @@ $(TYPEDSIGNATURES) Return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1058). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1058). """ SaveIniSettingsToMemory(out_ini_size = C_NULL) = igSaveIniSettingsToMemory(out_ini_size) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1062). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1062). """ DebugTextEncoding(text) = igDebugTextEncoding(text) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1063). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1063). """ DebugFlashStyleColor(idx::Union{ImGuiCol,ImGuiCol_,Integer}) = igDebugFlashStyleColor(idx) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1064). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1064). """ DebugStartItemPicker() = igDebugStartItemPicker() @@ -3652,7 +3652,7 @@ $(TYPEDSIGNATURES) This is called by IMGUI_CHECKVERSION() macro. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1065). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1065). """ DebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_drawvert, sz_drawidx) = igDebugCheckVersionAndDataLayout(version_str, sz_io, sz_style, sz_vec2, sz_vec4, sz_drawvert, sz_drawidx) @@ -3662,14 +3662,14 @@ $(TYPEDSIGNATURES) Call via IMGUI_DEBUG_LOG() for maximum stripping in caller code! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1067). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1067). """ DebugLog(fmt) = igDebugLog(fmt) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1075). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1075). """ SetAllocatorFunctions(alloc_func::ImGuiMemAllocFunc, free_func::ImGuiMemFreeFunc, user_data = C_NULL) = igSetAllocatorFunctions(alloc_func, free_func, user_data) @@ -3677,7 +3677,7 @@ SetAllocatorFunctions(alloc_func::ImGuiMemAllocFunc, free_func::ImGuiMemFreeFunc """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1076). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1076). """ GetAllocatorFunctions( p_alloc_func::VoidablePtrOrRef{ImGuiMemAllocFunc}, @@ -3688,14 +3688,14 @@ GetAllocatorFunctions( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1077). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1077). """ MemAlloc(size) = igMemAlloc(size) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1078). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1078). """ MemFree(ptr) = igMemFree(ptr) @@ -3704,7 +3704,7 @@ $(TYPEDSIGNATURES) Call in main loop. will call CreateWindow/ResizeWindow/etc. platform functions for each secondary viewport, and DestroyWindow for each inactive viewport. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1083). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1083). """ UpdatePlatformWindows() = igUpdatePlatformWindows() @@ -3713,7 +3713,7 @@ $(TYPEDSIGNATURES) 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. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1084). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1084). """ RenderPlatformWindowsDefault(platform_render_arg = C_NULL, renderer_render_arg = C_NULL) = igRenderPlatformWindowsDefault(platform_render_arg, renderer_render_arg) @@ -3723,7 +3723,7 @@ $(TYPEDSIGNATURES) 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(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1085). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1085). """ DestroyPlatformWindows() = igDestroyPlatformWindows() @@ -3732,7 +3732,7 @@ $(TYPEDSIGNATURES) This is a helper for backends. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1086). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1086). """ FindViewportByID(id::Union{ImGuiID,Integer}) = igFindViewportByID(id) @@ -3741,14 +3741,14 @@ $(TYPEDSIGNATURES) This is a helper for backends. the type platform_handle is decided by the backend (e.g. HWND, MyWindow*, GLFWwindow* etc.). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L1087). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L1087). """ FindViewportByPlatformHandle(platform_handle) = igFindViewportByPlatformHandle(platform_handle) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2083). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2084). """ lib.ImGuiTableSortSpecs() = ImGuiTableSortSpecs_ImGuiTableSortSpecs() @@ -3760,7 +3760,7 @@ Destroy(self::Ptr{ImGuiTableSortSpecs}) = ImGuiTableSortSpecs_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2094). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2095). """ lib.ImGuiTableColumnSortSpecs() = ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs() @@ -3772,7 +3772,7 @@ Destroy(self::Ptr{ImGuiTableColumnSortSpecs}) = ImGuiTableColumnSortSpecs_destro """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2271). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2272). """ lib.ImGuiStyle() = ImGuiStyle_ImGuiStyle() @@ -3784,7 +3784,7 @@ Destroy(self::Ptr{ImGuiStyle}) = ImGuiStyle_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2272). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2273). """ ScaleAllSizes(self::Ptr{ImGuiStyle}, scale_factor) = ImGuiStyle_ScaleAllSizes(self, scale_factor) @@ -3793,7 +3793,7 @@ $(TYPEDSIGNATURES) Queue a new key down/up event. Key should be "translated" (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' character). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2392). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2401). """ AddKeyEvent(self::Ptr{ImGuiIO}, key::ImGuiKey, down) = ImGuiIO_AddKeyEvent(self, key, down) @@ -3802,7 +3802,7 @@ $(TYPEDSIGNATURES) Queue a new key down/up event for analog values (e.g. ImGuiKey_Gamepad_ values). Dead-zones should be handled by the backend. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2393). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2402). """ AddKeyAnalogEvent(self::Ptr{ImGuiIO}, key::ImGuiKey, down, v) = ImGuiIO_AddKeyAnalogEvent(self, key, down, v) @@ -3811,7 +3811,7 @@ $(TYPEDSIGNATURES) Queue a mouse position update. Use -FLT_MAX,-FLT_MAX to signify no mouse (e.g. app not focused and not hovered). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2394). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2403). """ AddMousePosEvent(self::Ptr{ImGuiIO}, x, y) = ImGuiIO_AddMousePosEvent(self, x, y) @@ -3820,7 +3820,7 @@ $(TYPEDSIGNATURES) Queue a mouse button change. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2395). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2404). """ AddMouseButtonEvent(self::Ptr{ImGuiIO}, button, down) = ImGuiIO_AddMouseButtonEvent(self, button, down) @@ -3829,7 +3829,7 @@ $(TYPEDSIGNATURES) Queue a mouse wheel update. wheel_y<0: scroll down, wheel_y>0: scroll up, wheel_x<0: scroll right, wheel_x>0: scroll left. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2396). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2405). """ AddMouseWheelEvent(self::Ptr{ImGuiIO}, wheel_x, wheel_y) = ImGuiIO_AddMouseWheelEvent(self, wheel_x, wheel_y) @@ -3838,7 +3838,7 @@ $(TYPEDSIGNATURES) Queue a mouse source change (Mouse/TouchScreen/Pen). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2397). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2406). """ AddMouseSourceEvent(self::Ptr{ImGuiIO}, source::ImGuiMouseSource) = ImGuiIO_AddMouseSourceEvent(self, source) @@ -3847,7 +3847,7 @@ $(TYPEDSIGNATURES) Queue a mouse hovered viewport. Requires backend to set ImGuiBackendFlags_HasMouseHoveredViewport to call this (for multi-viewport support). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2398). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2407). """ AddMouseViewportEvent(self::Ptr{ImGuiIO}, id::Union{ImGuiID,Integer}) = ImGuiIO_AddMouseViewportEvent(self, id) @@ -3856,7 +3856,7 @@ $(TYPEDSIGNATURES) Queue a gain/loss of focus for the application (generally based on OS/platform focus of your window). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2399). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2408). """ AddFocusEvent(self::Ptr{ImGuiIO}, focused) = ImGuiIO_AddFocusEvent(self, focused) @@ -3865,7 +3865,7 @@ $(TYPEDSIGNATURES) Queue a new character input. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2400). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2409). """ AddInputCharacter(self::Ptr{ImGuiIO}, c) = ImGuiIO_AddInputCharacter(self, c) @@ -3874,7 +3874,7 @@ $(TYPEDSIGNATURES) Queue a new character input from a UTF-16 character, it can be a surrogate. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2401). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2410). """ AddInputCharacterUTF16(self::Ptr{ImGuiIO}, c::ImWchar16) = ImGuiIO_AddInputCharacterUTF16(self, c) @@ -3883,7 +3883,7 @@ $(TYPEDSIGNATURES) Queue a new characters input from a UTF-8 string. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2402). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2411). """ AddInputCharactersUTF8(self::Ptr{ImGuiIO}, str) = ImGuiIO_AddInputCharactersUTF8(self, str) @@ -3892,7 +3892,7 @@ $(TYPEDSIGNATURES) [Optional] Specify index for legacy <1.87 IsKeyXXX() functions with native indices + specify native keycode, scancode. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2404). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2413). """ SetKeyEventNativeData(self::Ptr{ImGuiIO}, key::ImGuiKey, native_keycode, native_scancode, native_legacy_index = -1) = ImGuiIO_SetKeyEventNativeData(self, key, native_keycode, native_scancode, native_legacy_index) @@ -3902,7 +3902,7 @@ $(TYPEDSIGNATURES) Set master flag for accepting key/mouse/text events (default to true). Useful if you have native dialog boxes that are interrupting your application loop/refresh, and you want to disable events being queued while your app is frozen. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2405). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2414). """ SetAppAcceptingEvents(self::Ptr{ImGuiIO}, accepting_events) = ImGuiIO_SetAppAcceptingEvents(self, accepting_events) @@ -3911,7 +3911,7 @@ $(TYPEDSIGNATURES) Clear all incoming events. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2406). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2415). """ ClearEventsQueue(self::Ptr{ImGuiIO}) = ImGuiIO_ClearEventsQueue(self) @@ -3920,7 +3920,7 @@ $(TYPEDSIGNATURES) Clear current keyboard/gamepad state + current frame text input buffer. Equivalent to releasing all keys/buttons. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2407). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2416). """ ClearInputKeys(self::Ptr{ImGuiIO}) = ImGuiIO_ClearInputKeys(self) @@ -3929,14 +3929,14 @@ $(TYPEDSIGNATURES) Clear current mouse state. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2408). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2417). """ ClearInputMouse(self::Ptr{ImGuiIO}) = ImGuiIO_ClearInputMouse(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2499). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2508). """ lib.ImGuiIO() = ImGuiIO_ImGuiIO() @@ -3948,7 +3948,7 @@ Destroy(self::Ptr{ImGuiIO}) = ImGuiIO_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2539). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2548). """ lib.ImGuiInputTextCallbackData() = ImGuiInputTextCallbackData_ImGuiInputTextCallbackData() @@ -3960,7 +3960,7 @@ Destroy(self::Ptr{ImGuiInputTextCallbackData}) = ImGuiInputTextCallbackData_dest """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2540). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2549). """ DeleteChars(self::Ptr{ImGuiInputTextCallbackData}, pos, bytes_count) = ImGuiInputTextCallbackData_DeleteChars(self, pos, bytes_count) @@ -3968,7 +3968,7 @@ DeleteChars(self::Ptr{ImGuiInputTextCallbackData}, pos, bytes_count) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2541). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2550). """ InsertChars(self::Ptr{ImGuiInputTextCallbackData}, pos, text, text_end = C_NULL) = ImGuiInputTextCallbackData_InsertChars(self, pos, text, text_end) @@ -3976,28 +3976,28 @@ InsertChars(self::Ptr{ImGuiInputTextCallbackData}, pos, text, text_end = C_NULL) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2542). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2551). """ SelectAll(self::Ptr{ImGuiInputTextCallbackData}) = ImGuiInputTextCallbackData_SelectAll(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2543). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2552). """ ClearSelection(self::Ptr{ImGuiInputTextCallbackData}) = ImGuiInputTextCallbackData_ClearSelection(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2544). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2553). """ HasSelection(self::Ptr{ImGuiInputTextCallbackData}) = ImGuiInputTextCallbackData_HasSelection(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2576). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2585). """ lib.ImGuiWindowClass() = ImGuiWindowClass_ImGuiWindowClass() @@ -4009,7 +4009,7 @@ Destroy(self::Ptr{ImGuiWindowClass}) = ImGuiWindowClass_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2594). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2603). """ lib.ImGuiPayload() = ImGuiPayload_ImGuiPayload() @@ -4021,35 +4021,35 @@ Destroy(self::Ptr{ImGuiPayload}) = ImGuiPayload_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2595). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2604). """ Clear(self::Ptr{ImGuiPayload}) = ImGuiPayload_Clear(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2596). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2605). """ IsDataType(self::Ptr{ImGuiPayload}, type) = ImGuiPayload_IsDataType(self, type) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2597). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2606). """ IsPreview(self::Ptr{ImGuiPayload}) = ImGuiPayload_IsPreview(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2598). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2607). """ IsDelivery(self::Ptr{ImGuiPayload}) = ImGuiPayload_IsDelivery(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2617). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2626). """ lib.ImGuiOnceUponAFrame() = ImGuiOnceUponAFrame_ImGuiOnceUponAFrame() @@ -4061,7 +4061,7 @@ Destroy(self::Ptr{ImGuiOnceUponAFrame}) = ImGuiOnceUponAFrame_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2625). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2634). """ lib.ImGuiTextFilter(default_filter = "") = ImGuiTextFilter_ImGuiTextFilter(default_filter) @@ -4075,42 +4075,42 @@ $(TYPEDSIGNATURES) Helper calling InputText+Build. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2626). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2635). """ Draw(self::Ptr{ImGuiTextFilter}, label = "Filter(inc,-exc)", width = 0.0f0) = ImGuiTextFilter_Draw(self, label, width) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2627). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2636). """ PassFilter(self::Ptr{ImGuiTextFilter}, text, text_end = C_NULL) = ImGuiTextFilter_PassFilter(self, text, text_end) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2628). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2637). """ Build(self::Ptr{ImGuiTextFilter}) = ImGuiTextFilter_Build(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2629). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2638). """ Clear(self::Ptr{ImGuiTextFilter}) = ImGuiTextFilter_Clear(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2630). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2639). """ IsActive(self::Ptr{ImGuiTextFilter}) = ImGuiTextFilter_IsActive(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2638). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2647). """ lib.ImGuiTextRange() = ImGuiTextRange_ImGuiTextRange_Nil() @@ -4122,7 +4122,7 @@ Destroy(self::Ptr{ImGuiTextRange}) = ImGuiTextRange_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2639). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2648). """ lib.ImGuiTextRange(_b::Union{String,Ptr{Cchar},Ptr{Cvoid}}, _e::Union{String,Ptr{Cchar},Ptr{Cvoid}}) = ImGuiTextRange_ImGuiTextRange_Str(_b, _e) @@ -4130,14 +4130,14 @@ lib.ImGuiTextRange(_b::Union{String,Ptr{Cchar},Ptr{Cvoid}}, _e::Union{String,Ptr """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2640). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2649). """ Empty(self::Ptr{ImGuiTextRange}) = ImGuiTextRange_empty(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2641). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2650). """ Split(self::Ptr{ImGuiTextRange}, separator, out::VoidablePtrOrRef{ImVector_ImGuiTextRange}) = ImGuiTextRange_split(self, separator, out) @@ -4145,7 +4145,7 @@ Split(self::Ptr{ImGuiTextRange}, separator, out::VoidablePtrOrRef{ImVector_ImGui """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2655). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2664). """ lib.ImGuiTextBuffer() = ImGuiTextBuffer_ImGuiTextBuffer() @@ -4157,7 +4157,7 @@ Destroy(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2657). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2666). """ Begin(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_begin(self) @@ -4166,56 +4166,56 @@ $(TYPEDSIGNATURES) Buf is zero-terminated, so end() will point on the zero-terminator. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2658). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2667). """ End(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_end(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2659). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2668). """ Size(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_size(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2660). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2669). """ Empty(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_empty(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2661). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2670). """ Clear(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_clear(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2662). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2671). """ Reserve(self::Ptr{ImGuiTextBuffer}, capacity) = ImGuiTextBuffer_reserve(self, capacity) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2663). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2672). """ C_str(self::Ptr{ImGuiTextBuffer}) = ImGuiTextBuffer_c_str(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2664). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2673). """ Append(self::Ptr{ImGuiTextBuffer}, str, str_end = C_NULL) = ImGuiTextBuffer_append(self, str, str_end) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2674). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2683). """ lib.ImGuiStoragePair(_key::Union{ImGuiID,Integer}, _val::Integer) = ImGuiStoragePair_ImGuiStoragePair_Int(_key, _val) @@ -4227,14 +4227,14 @@ Destroy(self::Ptr{ImGuiStoragePair}) = ImGuiStoragePair_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2675). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2684). """ lib.ImGuiStoragePair(_key::Union{ImGuiID,Integer}, _val::Real) = ImGuiStoragePair_ImGuiStoragePair_Float(_key, _val) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2676). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2685). """ lib.ImGuiStoragePair(_key::Union{ImGuiID,Integer}, _val::PtrOrRef{Cvoid}) = ImGuiStoragePair_ImGuiStoragePair_Ptr(_key, _val) @@ -4242,14 +4242,14 @@ lib.ImGuiStoragePair(_key::Union{ImGuiID,Integer}, _val::PtrOrRef{Cvoid}) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2695). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2704). """ Clear(self::Ptr{ImGuiStorage}) = ImGuiStorage_Clear(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2696). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2705). """ GetInt(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0) = ImGuiStorage_GetInt(self, key, default_val) @@ -4257,14 +4257,14 @@ GetInt(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2697). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2706). """ SetInt(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, val) = ImGuiStorage_SetInt(self, key, val) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2698). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2707). """ GetBool(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = false) = ImGuiStorage_GetBool(self, key, default_val) @@ -4272,14 +4272,14 @@ GetBool(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = fals """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2699). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2708). """ SetBool(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, val) = ImGuiStorage_SetBool(self, key, val) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2700). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2709). """ GetFloat(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0.0f0) = ImGuiStorage_GetFloat(self, key, default_val) @@ -4287,7 +4287,7 @@ GetFloat(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0.0 """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2701). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2710). """ SetFloat(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, val) = ImGuiStorage_SetFloat(self, key, val) @@ -4296,21 +4296,21 @@ $(TYPEDSIGNATURES) Default_val is NULL. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2702). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2711). """ GetVoidPtr(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}) = ImGuiStorage_GetVoidPtr(self, key) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2703). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2712). """ SetVoidPtr(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, val) = ImGuiStorage_SetVoidPtr(self, key, val) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2709). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2718). """ GetIntRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0) = ImGuiStorage_GetIntRef(self, key, default_val) @@ -4318,7 +4318,7 @@ GetIntRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2710). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2719). """ GetBoolRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = false) = ImGuiStorage_GetBoolRef(self, key, default_val) @@ -4326,7 +4326,7 @@ GetBoolRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = f """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2711). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2720). """ GetFloatRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = 0.0f0) = ImGuiStorage_GetFloatRef(self, key, default_val) @@ -4334,7 +4334,7 @@ GetFloatRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2712). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2721). """ GetVoidPtrRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val = C_NULL) = ImGuiStorage_GetVoidPtrRef(self, key, default_val) @@ -4342,21 +4342,21 @@ GetVoidPtrRef(self::Ptr{ImGuiStorage}, key::Union{ImGuiID,Integer}, default_val """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2715). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2724). """ BuildSortByKey(self::Ptr{ImGuiStorage}) = ImGuiStorage_BuildSortByKey(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2717). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2726). """ SetAllInt(self::Ptr{ImGuiStorage}, val) = ImGuiStorage_SetAllInt(self, val) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2757). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2766). """ lib.ImGuiListClipper() = ImGuiListClipper_ImGuiListClipper() @@ -4368,7 +4368,7 @@ Destroy(self::Ptr{ImGuiListClipper}) = ImGuiListClipper_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2759). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2768). """ Begin(self::Ptr{ImGuiListClipper}, items_count, items_height = -1.0f0) = ImGuiListClipper_Begin(self, items_count, items_height) @@ -4378,7 +4378,7 @@ $(TYPEDSIGNATURES) Automatically called on the last call of Step() that returns false. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2760). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2769). """ End(self::Ptr{ImGuiListClipper}) = ImGuiListClipper_End(self) @@ -4387,14 +4387,14 @@ $(TYPEDSIGNATURES) Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2761). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2770). """ Step(self::Ptr{ImGuiListClipper}) = ImGuiListClipper_Step(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2765). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2774). """ IncludeItemByIndex(self::Ptr{ImGuiListClipper}, item_index) = ImGuiListClipper_IncludeItemByIndex(self, item_index) @@ -4403,7 +4403,7 @@ $(TYPEDSIGNATURES) Item_end is exclusive e.g. use (42, 42+1) to make item 42 never clipped. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2766). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2775). """ IncludeItemsByIndex(self::Ptr{ImGuiListClipper}, item_begin, item_end) = ImGuiListClipper_IncludeItemsByIndex(self, item_begin, item_end) @@ -4411,14 +4411,14 @@ IncludeItemsByIndex(self::Ptr{ImGuiListClipper}, item_begin, item_end) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2771). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2780). """ SeekCursorForItem(self::Ptr{ImGuiListClipper}, item_index) = ImGuiListClipper_SeekCursorForItem(self, item_index) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2840). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2849). """ lib.ImColor() = ImColor_ImColor_Nil() @@ -4430,35 +4430,35 @@ Destroy(self::Ptr{ImColor}) = ImColor_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2841). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2850). """ lib.ImColor(r::Real, g::Real, b::Real, a::Real = 1.0f0) = ImColor_ImColor_Float(r, g, b, a) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2843). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2852). """ lib.ImColor(r::Integer, g::Integer, b::Integer, a::Integer = 255) = ImColor_ImColor_Int(r, g, b, a) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2844). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2853). """ lib.ImColor(rgba::Union{ImU32,Integer}) = ImColor_ImColor_U32(rgba) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2849). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2858). """ SetHSV(self::Ptr{ImColor}, h, s, v, a = 1.0f0) = ImColor_SetHSV(self, h, s, v, a) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2850). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2859). """ function HSV(h, s, v, a = 1.0f0) pOut = Ref{ImColor}() @@ -4469,7 +4469,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2978). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2987). """ lib.ImGuiSelectionBasicStorage() = ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage() @@ -4483,7 +4483,7 @@ $(TYPEDSIGNATURES) Apply selection requests coming from BeginMultiSelect() and EndMultiSelect() functions. It uses 'items_count' passed to BeginMultiSelect(). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2979). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2988). """ ApplyRequests(self::Ptr{ImGuiSelectionBasicStorage}, ms_io::VoidablePtrOrRef{ImGuiMultiSelectIO}) = ImGuiSelectionBasicStorage_ApplyRequests(self, ms_io) @@ -4493,7 +4493,7 @@ $(TYPEDSIGNATURES) Query if an item id is in selection. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2980). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2989). """ Contains(self::Ptr{ImGuiSelectionBasicStorage}, id::Union{ImGuiID,Integer}) = ImGuiSelectionBasicStorage_Contains(self, id) @@ -4503,7 +4503,7 @@ $(TYPEDSIGNATURES) Clear selection. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2981). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2990). """ Clear(self::Ptr{ImGuiSelectionBasicStorage}) = ImGuiSelectionBasicStorage_Clear(self) @@ -4512,7 +4512,7 @@ $(TYPEDSIGNATURES) Swap two selections. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2982). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2991). """ Swap(self::Ptr{ImGuiSelectionBasicStorage}, r::VoidablePtrOrRef{ImGuiSelectionBasicStorage}) = ImGuiSelectionBasicStorage_Swap(self, r) @@ -4522,7 +4522,7 @@ $(TYPEDSIGNATURES) Add/remove an item from selection (generally done by ApplyRequests() function). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2983). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2992). """ SetItemSelected(self::Ptr{ImGuiSelectionBasicStorage}, id::Union{ImGuiID,Integer}, selected) = ImGuiSelectionBasicStorage_SetItemSelected(self, id, selected) @@ -4532,7 +4532,7 @@ $(TYPEDSIGNATURES) Iterate selection with 'void* it = NULL; ImGuiId id; while (selection.GetNextSelectedItem(&it, &id)) ... '. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2984). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2993). """ GetNextSelectedItem( self::Ptr{ImGuiSelectionBasicStorage}, @@ -4545,7 +4545,7 @@ $(TYPEDSIGNATURES) Convert index to item id based on provided adapter. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2985). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2994). """ GetStorageIdFromIndex(self::Ptr{ImGuiSelectionBasicStorage}, idx) = ImGuiSelectionBasicStorage_GetStorageIdFromIndex(self, idx) @@ -4553,7 +4553,7 @@ GetStorageIdFromIndex(self::Ptr{ImGuiSelectionBasicStorage}, idx) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2997). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3006). """ lib.ImGuiSelectionExternalStorage() = ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage() @@ -4567,7 +4567,7 @@ $(TYPEDSIGNATURES) Apply selection requests by using AdapterSetItemSelected() calls. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2998). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3007). """ ApplyRequests(self::Ptr{ImGuiSelectionExternalStorage}, ms_io::VoidablePtrOrRef{ImGuiMultiSelectIO}) = ImGuiSelectionExternalStorage_ApplyRequests(self, ms_io) @@ -4577,7 +4577,7 @@ $(TYPEDSIGNATURES) Also ensure our padding fields are zeroed. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3043). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3052). """ lib.ImDrawCmd() = ImDrawCmd_ImDrawCmd() @@ -4589,14 +4589,14 @@ Destroy(self::Ptr{ImDrawCmd}) = ImDrawCmd_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3046). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3055). """ GetTexID(self::Ptr{ImDrawCmd}) = ImDrawCmd_GetTexID(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3089). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3098). """ lib.ImDrawListSplitter() = ImDrawListSplitter_ImDrawListSplitter() @@ -4610,21 +4610,21 @@ $(TYPEDSIGNATURES) Do not clear Channels[] so our allocations are reused next frame. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3091). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3100). """ Clear(self::Ptr{ImDrawListSplitter}) = ImDrawListSplitter_Clear(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3092). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3101). """ ClearFreeMemory(self::Ptr{ImDrawListSplitter}) = ImDrawListSplitter_ClearFreeMemory(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3093). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3102). """ Split(self::Ptr{ImDrawListSplitter}, draw_list::VoidablePtrOrRef{ImDrawList}, count) = ImDrawListSplitter_Split(self, draw_list, count) @@ -4632,7 +4632,7 @@ Split(self::Ptr{ImDrawListSplitter}, draw_list::VoidablePtrOrRef{ImDrawList}, co """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3094). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3103). """ Merge(self::Ptr{ImDrawListSplitter}, draw_list::VoidablePtrOrRef{ImDrawList}) = ImDrawListSplitter_Merge(self, draw_list) @@ -4640,7 +4640,7 @@ Merge(self::Ptr{ImDrawListSplitter}, draw_list::VoidablePtrOrRef{ImDrawList}) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3095). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3104). """ SetCurrentChannel(self::Ptr{ImDrawListSplitter}, draw_list::VoidablePtrOrRef{ImDrawList}, channel_idx) = ImDrawListSplitter_SetCurrentChannel(self, draw_list, channel_idx) @@ -4648,7 +4648,7 @@ SetCurrentChannel(self::Ptr{ImDrawListSplitter}, draw_list::VoidablePtrOrRef{ImD """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3160). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3169). """ lib.ImDrawList(shared_data::VoidablePtrOrRef{ImDrawListSharedData}) = ImDrawList_ImDrawList(shared_data) @@ -4662,7 +4662,7 @@ $(TYPEDSIGNATURES) Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3163). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3172). """ PushClipRect( self::Ptr{ImDrawList}, @@ -4674,35 +4674,35 @@ PushClipRect( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3164). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3173). """ PushClipRectFullScreen(self::Ptr{ImDrawList}) = ImDrawList_PushClipRectFullScreen(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3165). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3174). """ PopClipRect(self::Ptr{ImDrawList}) = ImDrawList_PopClipRect(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3166). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3175). """ PushTextureID(self::Ptr{ImDrawList}, texture_id::ImTextureID) = ImDrawList_PushTextureID(self, texture_id) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3167). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3176). """ PopTextureID(self::Ptr{ImDrawList}) = ImDrawList_PopTextureID(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3168). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3177). """ function GetClipRectMin(self::Ptr{ImDrawList}) pOut = Ref{ImVec2}() @@ -4713,7 +4713,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3169). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3178). """ function GetClipRectMax(self::Ptr{ImDrawList}) pOut = Ref{ImVec2}() @@ -4724,7 +4724,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3178). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3187). """ AddLine( self::Ptr{ImDrawList}, @@ -4739,7 +4739,7 @@ $(TYPEDSIGNATURES) A: upper-left, b: lower-right (== upper-left + size). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3179). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3188). """ AddRect( self::Ptr{ImDrawList}, @@ -4756,7 +4756,7 @@ $(TYPEDSIGNATURES) A: upper-left, b: lower-right (== upper-left + size). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3180). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3189). """ AddRectFilled( self::Ptr{ImDrawList}, @@ -4770,7 +4770,7 @@ AddRectFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3181). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3190). """ AddRectFilledMultiColor( self::Ptr{ImDrawList}, @@ -4785,7 +4785,7 @@ AddRectFilledMultiColor( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3182). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3191). """ AddQuad( self::Ptr{ImDrawList}, @@ -4800,7 +4800,7 @@ AddQuad( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3183). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3192). """ AddQuadFilled( self::Ptr{ImDrawList}, @@ -4814,7 +4814,7 @@ AddQuadFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3184). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3193). """ AddTriangle( self::Ptr{ImDrawList}, @@ -4828,7 +4828,7 @@ AddTriangle( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3185). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3194). """ AddTriangleFilled( self::Ptr{ImDrawList}, @@ -4841,7 +4841,7 @@ AddTriangleFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3186). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3195). """ AddCircle( self::Ptr{ImDrawList}, @@ -4855,7 +4855,7 @@ AddCircle( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3187). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3196). """ AddCircleFilled( self::Ptr{ImDrawList}, @@ -4868,7 +4868,7 @@ AddCircleFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3188). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3197). """ AddNgon( self::Ptr{ImDrawList}, @@ -4882,7 +4882,7 @@ AddNgon( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3189). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3198). """ AddNgonFilled(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, col::Union{ImU32,Integer}, num_segments) = ImDrawList_AddNgonFilled(self, center, radius, col, num_segments) @@ -4890,7 +4890,7 @@ AddNgonFilled(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, co """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3190). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3199). """ AddEllipse( self::Ptr{ImDrawList}, @@ -4905,7 +4905,7 @@ AddEllipse( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3191). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3200). """ AddEllipseFilled( self::Ptr{ImDrawList}, @@ -4919,7 +4919,7 @@ AddEllipseFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3192). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3201). """ AddText( self::Ptr{ImDrawList}, @@ -4932,7 +4932,7 @@ AddText( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3193). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3202). """ AddText( self::Ptr{ImDrawList}, @@ -4951,7 +4951,7 @@ $(TYPEDSIGNATURES) Cubic Bezier (4 control points). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3194). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3203). """ AddBezierCubic( self::Ptr{ImDrawList}, @@ -4969,7 +4969,7 @@ $(TYPEDSIGNATURES) Quadratic Bezier (3 control points). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3195). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3204). """ AddBezierQuadratic( self::Ptr{ImDrawList}, @@ -4984,7 +4984,7 @@ AddBezierQuadratic( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3200). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3209). """ AddPolyline( self::Ptr{ImDrawList}, @@ -4998,7 +4998,7 @@ AddPolyline( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3201). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3210). """ AddConvexPolyFilled( self::Ptr{ImDrawList}, @@ -5010,7 +5010,7 @@ AddConvexPolyFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3202). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3211). """ AddConcavePolyFilled( self::Ptr{ImDrawList}, @@ -5022,7 +5022,7 @@ AddConcavePolyFilled( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3208). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3217). """ AddImage( self::Ptr{ImDrawList}, @@ -5037,7 +5037,7 @@ AddImage( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3209). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3218). """ AddImageQuad( self::Ptr{ImDrawList}, @@ -5056,7 +5056,7 @@ AddImageQuad( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3210). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3219). """ AddImageRounded( self::Ptr{ImDrawList}, @@ -5073,21 +5073,21 @@ AddImageRounded( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3215). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3224). """ PathClear(self::Ptr{ImDrawList}) = ImDrawList_PathClear(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3216). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3225). """ PathLineTo(self::Ptr{ImDrawList}, pos::Union{ImVec2,NTuple{2}}) = ImDrawList_PathLineTo(self, pos) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3217). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3226). """ PathLineToMergeDuplicate(self::Ptr{ImDrawList}, pos::Union{ImVec2,NTuple{2}}) = ImDrawList_PathLineToMergeDuplicate(self, pos) @@ -5095,21 +5095,21 @@ PathLineToMergeDuplicate(self::Ptr{ImDrawList}, pos::Union{ImVec2,NTuple{2}}) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3218). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3227). """ PathFillConvex(self::Ptr{ImDrawList}, col::Union{ImU32,Integer}) = ImDrawList_PathFillConvex(self, col) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3219). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3228). """ PathFillConcave(self::Ptr{ImDrawList}, col::Union{ImU32,Integer}) = ImDrawList_PathFillConcave(self, col) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3220). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3229). """ PathStroke( self::Ptr{ImDrawList}, @@ -5121,7 +5121,7 @@ PathStroke( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3221). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3230). """ PathArcTo(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, a_min, a_max, num_segments = 0) = ImDrawList_PathArcTo(self, center, radius, a_min, a_max, num_segments) @@ -5131,7 +5131,7 @@ $(TYPEDSIGNATURES) Use precomputed angles for a 12 steps circle. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3222). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3231). """ PathArcToFast(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, a_min_of_12, a_max_of_12) = ImDrawList_PathArcToFast(self, center, radius, a_min_of_12, a_max_of_12) @@ -5141,7 +5141,7 @@ $(TYPEDSIGNATURES) Ellipse. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3223). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3232). """ PathEllipticalArcTo( self::Ptr{ImDrawList}, @@ -5158,7 +5158,7 @@ $(TYPEDSIGNATURES) Cubic Bezier (4 control points). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3224). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3233). """ PathBezierCubicCurveTo( self::Ptr{ImDrawList}, @@ -5173,7 +5173,7 @@ $(TYPEDSIGNATURES) Quadratic Bezier (3 control points). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3225). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3234). """ PathBezierQuadraticCurveTo( self::Ptr{ImDrawList}, @@ -5185,7 +5185,7 @@ PathBezierQuadraticCurveTo( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3226). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3235). """ PathRect( self::Ptr{ImDrawList}, @@ -5200,7 +5200,7 @@ $(TYPEDSIGNATURES) Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3229). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3238). """ AddCallback(self::Ptr{ImDrawList}, callback::Union{ImDrawCallback,Base.CFunction,Ptr{Cvoid}}, callback_data) = ImDrawList_AddCallback(self, callback, callback_data) @@ -5210,7 +5210,7 @@ $(TYPEDSIGNATURES) 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. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3230). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3239). """ AddDrawCmd(self::Ptr{ImDrawList}) = ImDrawList_AddDrawCmd(self) @@ -5219,42 +5219,42 @@ $(TYPEDSIGNATURES) Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3231). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3240). """ CloneOutput(self::Ptr{ImDrawList}) = ImDrawList_CloneOutput(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3239). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3248). """ ChannelsSplit(self::Ptr{ImDrawList}, count) = ImDrawList_ChannelsSplit(self, count) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3240). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3249). """ ChannelsMerge(self::Ptr{ImDrawList}) = ImDrawList_ChannelsMerge(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3241). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3250). """ ChannelsSetCurrent(self::Ptr{ImDrawList}, n) = ImDrawList_ChannelsSetCurrent(self, n) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3246). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3255). """ PrimReserve(self::Ptr{ImDrawList}, idx_count, vtx_count) = ImDrawList_PrimReserve(self, idx_count, vtx_count) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3247). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3256). """ PrimUnreserve(self::Ptr{ImDrawList}, idx_count, vtx_count) = ImDrawList_PrimUnreserve(self, idx_count, vtx_count) @@ -5263,7 +5263,7 @@ $(TYPEDSIGNATURES) Axis aligned rectangle (composed of two triangles). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3248). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3257). """ PrimRect(self::Ptr{ImDrawList}, a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}, col::Union{ImU32,Integer}) = ImDrawList_PrimRect(self, a, b, col) @@ -5271,7 +5271,7 @@ PrimRect(self::Ptr{ImDrawList}, a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTup """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3249). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3258). """ PrimRectUV( self::Ptr{ImDrawList}, @@ -5285,7 +5285,7 @@ PrimRectUV( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3250). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3259). """ PrimQuadUV( self::Ptr{ImDrawList}, @@ -5303,7 +5303,7 @@ PrimQuadUV( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3251). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3260). """ PrimWriteVtx( self::Ptr{ImDrawList}, @@ -5315,7 +5315,7 @@ PrimWriteVtx( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3252). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3261). """ PrimWriteIdx(self::Ptr{ImDrawList}, idx::ImDrawIdx) = ImDrawList_PrimWriteIdx(self, idx) @@ -5324,7 +5324,7 @@ $(TYPEDSIGNATURES) Write vertex with unique index. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3253). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3262). """ PrimVtx(self::Ptr{ImDrawList}, pos::Union{ImVec2,NTuple{2}}, uv::Union{ImVec2,NTuple{2}}, col::Union{ImU32,Integer}) = ImDrawList_PrimVtx(self, pos, uv, col) @@ -5332,70 +5332,70 @@ PrimVtx(self::Ptr{ImDrawList}, pos::Union{ImVec2,NTuple{2}}, uv::Union{ImVec2,NT """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3263). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3272). """ _ResetForNewFrame(self::Ptr{ImDrawList}) = ImDrawList__ResetForNewFrame(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3264). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3273). """ _ClearFreeMemory(self::Ptr{ImDrawList}) = ImDrawList__ClearFreeMemory(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3265). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3274). """ _PopUnusedDrawCmd(self::Ptr{ImDrawList}) = ImDrawList__PopUnusedDrawCmd(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3266). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3275). """ _TryMergeDrawCmds(self::Ptr{ImDrawList}) = ImDrawList__TryMergeDrawCmds(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3267). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3276). """ _OnChangedClipRect(self::Ptr{ImDrawList}) = ImDrawList__OnChangedClipRect(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3268). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3277). """ _OnChangedTextureID(self::Ptr{ImDrawList}) = ImDrawList__OnChangedTextureID(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3269). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3278). """ _OnChangedVtxOffset(self::Ptr{ImDrawList}) = ImDrawList__OnChangedVtxOffset(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3270). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3279). """ _SetTextureID(self::Ptr{ImDrawList}, texture_id::ImTextureID) = ImDrawList__SetTextureID(self, texture_id) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3271). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3280). """ _CalcCircleAutoSegmentCount(self::Ptr{ImDrawList}, radius) = ImDrawList__CalcCircleAutoSegmentCount(self, radius) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3272). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3281). """ _PathArcToFastEx(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, a_min_sample, a_max_sample, a_step) = ImDrawList__PathArcToFastEx(self, center, radius, a_min_sample, a_max_sample, a_step) @@ -5403,7 +5403,7 @@ _PathArcToFastEx(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3273). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3282). """ _PathArcToN(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, a_min, a_max, num_segments) = ImDrawList__PathArcToN(self, center, radius, a_min, a_max, num_segments) @@ -5411,7 +5411,7 @@ _PathArcToN(self::Ptr{ImDrawList}, center::Union{ImVec2,NTuple{2}}, radius, a_mi """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3292). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3301). """ lib.ImDrawData() = ImDrawData_ImDrawData() @@ -5423,7 +5423,7 @@ Destroy(self::Ptr{ImDrawData}) = ImDrawData_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3293). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3302). """ Clear(self::Ptr{ImDrawData}) = ImDrawData_Clear(self) @@ -5432,7 +5432,7 @@ $(TYPEDSIGNATURES) Helper to add an external draw list into an existing ImDrawData. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3294). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3303). """ AddDrawList(self::Ptr{ImDrawData}, draw_list::VoidablePtrOrRef{ImDrawList}) = ImDrawData_AddDrawList(self, draw_list) @@ -5441,7 +5441,7 @@ $(TYPEDSIGNATURES) Helper to convert all buffers from indexed to non-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3295). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3304). """ DeIndexAllBuffers(self::Ptr{ImDrawData}) = ImDrawData_DeIndexAllBuffers(self) @@ -5450,14 +5450,14 @@ $(TYPEDSIGNATURES) Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than Dear ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3296). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3305). """ ScaleClipRects(self::Ptr{ImDrawData}, fb_scale::Union{ImVec2,NTuple{2}}) = ImDrawData_ScaleClipRects(self, fb_scale) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3328). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3337). """ lib.ImFontConfig() = ImFontConfig_ImFontConfig() @@ -5469,7 +5469,7 @@ Destroy(self::Ptr{ImFontConfig}) = ImFontConfig_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3349). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3358). """ lib.ImFontGlyphRangesBuilder() = ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder() @@ -5481,7 +5481,7 @@ Destroy(self::Ptr{ImFontGlyphRangesBuilder}) = ImFontGlyphRangesBuilder_destroy( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3350). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3359). """ Clear(self::Ptr{ImFontGlyphRangesBuilder}) = ImFontGlyphRangesBuilder_Clear(self) @@ -5490,7 +5490,7 @@ $(TYPEDSIGNATURES) Get bit n in the array. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3351). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3360). """ GetBit(self::Ptr{ImFontGlyphRangesBuilder}, n) = ImFontGlyphRangesBuilder_GetBit(self, n) @@ -5499,7 +5499,7 @@ $(TYPEDSIGNATURES) Set bit n in the array. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3352). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3361). """ SetBit(self::Ptr{ImFontGlyphRangesBuilder}, n) = ImFontGlyphRangesBuilder_SetBit(self, n) @@ -5508,7 +5508,7 @@ $(TYPEDSIGNATURES) Add character. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3353). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3362). """ AddChar(self::Ptr{ImFontGlyphRangesBuilder}, c::ImWchar) = ImFontGlyphRangesBuilder_AddChar(self, c) @@ -5517,7 +5517,7 @@ $(TYPEDSIGNATURES) Add string (each character of the UTF-8 string are added). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3354). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3363). """ AddText(self::Ptr{ImFontGlyphRangesBuilder}, text, text_end = C_NULL) = ImFontGlyphRangesBuilder_AddText(self, text, text_end) @@ -5527,7 +5527,7 @@ $(TYPEDSIGNATURES) Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault()) to force add all of ASCII/Latin+Ext. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3355). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3364). """ AddRanges(self::Ptr{ImFontGlyphRangesBuilder}, ranges::VoidablePtrOrRef{ImWchar}) = ImFontGlyphRangesBuilder_AddRanges(self, ranges) @@ -5537,7 +5537,7 @@ $(TYPEDSIGNATURES) Output new ranges. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3356). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3365). """ BuildRanges(self::Ptr{ImFontGlyphRangesBuilder}, out_ranges::VoidablePtrOrRef{ImVector_ImWchar}) = ImFontGlyphRangesBuilder_BuildRanges(self, out_ranges) @@ -5545,7 +5545,7 @@ BuildRanges(self::Ptr{ImFontGlyphRangesBuilder}, out_ranges::VoidablePtrOrRef{Im """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3368). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3377). """ lib.ImFontAtlasCustomRect() = ImFontAtlasCustomRect_ImFontAtlasCustomRect() @@ -5557,14 +5557,14 @@ Destroy(self::Ptr{ImFontAtlasCustomRect}) = ImFontAtlasCustomRect_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3369). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3378). """ IsPacked(self::Ptr{ImFontAtlasCustomRect}) = ImFontAtlasCustomRect_IsPacked(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3400). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3409). """ lib.ImFontAtlas() = ImFontAtlas_ImFontAtlas() @@ -5576,14 +5576,14 @@ Destroy(self::Ptr{ImFontAtlas}) = ImFontAtlas_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3402). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3411). """ AddFont(self::Ptr{ImFontAtlas}, font_cfg::VoidablePtrOrRef{ImFontConfig}) = ImFontAtlas_AddFont(self, font_cfg) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3403). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3412). """ AddFontDefault(self::Ptr{ImFontAtlas}, font_cfg::VoidablePtrOrRef{ImFontConfig} = C_NULL) = ImFontAtlas_AddFontDefault(self, font_cfg) @@ -5591,7 +5591,7 @@ AddFontDefault(self::Ptr{ImFontAtlas}, font_cfg::VoidablePtrOrRef{ImFontConfig} """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3404). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3413). """ AddFontFromFileTTF( self::Ptr{ImFontAtlas}, @@ -5606,7 +5606,7 @@ $(TYPEDSIGNATURES) Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after destruction of the atlas. Set font_cfg->FontDataOwnedByAtlas=false to keep ownership of your data and it won't be freed. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3405). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3414). """ AddFontFromMemoryTTF( self::Ptr{ImFontAtlas}, @@ -5622,7 +5622,7 @@ $(TYPEDSIGNATURES) 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3406). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3415). """ AddFontFromMemoryCompressedTTF( self::Ptr{ImFontAtlas}, @@ -5645,7 +5645,7 @@ $(TYPEDSIGNATURES) 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3407). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3416). """ AddFontFromMemoryCompressedBase85TTF( self::Ptr{ImFontAtlas}, @@ -5666,7 +5666,7 @@ $(TYPEDSIGNATURES) Clear input data (all ImFontConfig structures including sizes, TTF data, glyph ranges, etc.) = all the data used to build the texture and fonts. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3408). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3417). """ ClearInputData(self::Ptr{ImFontAtlas}) = ImFontAtlas_ClearInputData(self) @@ -5675,7 +5675,7 @@ $(TYPEDSIGNATURES) Clear output texture data (CPU side). Saves RAM once the texture has been copied to graphics memory. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3409). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3418). """ ClearTexData(self::Ptr{ImFontAtlas}) = ImFontAtlas_ClearTexData(self) @@ -5684,7 +5684,7 @@ $(TYPEDSIGNATURES) Clear output font data (glyphs storage, UV coordinates). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3410). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3419). """ ClearFonts(self::Ptr{ImFontAtlas}) = ImFontAtlas_ClearFonts(self) @@ -5693,7 +5693,7 @@ $(TYPEDSIGNATURES) Clear all input and output. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3411). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3420). """ Clear(self::Ptr{ImFontAtlas}) = ImFontAtlas_Clear(self) @@ -5702,7 +5702,7 @@ $(TYPEDSIGNATURES) Build pixels data. This is called automatically for you by the GetTexData*** functions. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3418). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3427). """ Build(self::Ptr{ImFontAtlas}) = ImFontAtlas_Build(self) @@ -5711,7 +5711,7 @@ $(TYPEDSIGNATURES) 1 byte per-pixel. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3419). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3428). """ GetTexDataAsAlpha8(self::Ptr{ImFontAtlas}, out_pixels, out_width, out_height, out_bytes_per_pixel = C_NULL) = ImFontAtlas_GetTexDataAsAlpha8(self, out_pixels, out_width, out_height, out_bytes_per_pixel) @@ -5721,7 +5721,7 @@ $(TYPEDSIGNATURES) 4 bytes-per-pixel. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3420). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3429). """ GetTexDataAsRGBA32(self::Ptr{ImFontAtlas}, out_pixels, out_width, out_height, out_bytes_per_pixel = C_NULL) = ImFontAtlas_GetTexDataAsRGBA32(self, out_pixels, out_width, out_height, out_bytes_per_pixel) @@ -5731,14 +5731,14 @@ $(TYPEDSIGNATURES) Bit ambiguous: used to detect when user didn't build texture but effectively we should check TexID != 0 except that would be backend dependent... -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3421). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3430). """ IsBuilt(self::Ptr{ImFontAtlas}) = ImFontAtlas_IsBuilt(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3422). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3431). """ SetTexID(self::Ptr{ImFontAtlas}, id::ImTextureID) = ImFontAtlas_SetTexID(self, id) @@ -5747,7 +5747,7 @@ $(TYPEDSIGNATURES) Basic Latin, Extended Latin. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3432). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3441). """ GetGlyphRangesDefault(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesDefault(self) @@ -5756,7 +5756,7 @@ $(TYPEDSIGNATURES) Default + Greek and Coptic. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3433). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3442). """ GetGlyphRangesGreek(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesGreek(self) @@ -5765,7 +5765,7 @@ $(TYPEDSIGNATURES) Default + Korean characters. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3434). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3443). """ GetGlyphRangesKorean(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesKorean(self) @@ -5774,7 +5774,7 @@ $(TYPEDSIGNATURES) Default + Hiragana, Katakana, Half-Width, Selection of 2999 Ideographs. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3435). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3444). """ GetGlyphRangesJapanese(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesJapanese(self) @@ -5783,7 +5783,7 @@ $(TYPEDSIGNATURES) Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3436). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3445). """ GetGlyphRangesChineseFull(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesChineseFull(self) @@ -5792,7 +5792,7 @@ $(TYPEDSIGNATURES) Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3437). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3446). """ GetGlyphRangesChineseSimplifiedCommon(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon(self) @@ -5801,7 +5801,7 @@ $(TYPEDSIGNATURES) Default + about 400 Cyrillic characters. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3438). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3447). """ GetGlyphRangesCyrillic(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesCyrillic(self) @@ -5810,7 +5810,7 @@ $(TYPEDSIGNATURES) Default + Thai characters. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3439). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3448). """ GetGlyphRangesThai(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesThai(self) @@ -5819,21 +5819,21 @@ $(TYPEDSIGNATURES) Default + Vietnamese characters. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3440). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3449). """ GetGlyphRangesVietnamese(self::Ptr{ImFontAtlas}) = ImFontAtlas_GetGlyphRangesVietnamese(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3453). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3462). """ AddCustomRectRegular(self::Ptr{ImFontAtlas}, width, height) = ImFontAtlas_AddCustomRectRegular(self, width, height) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3454). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3463). """ AddCustomRectFontGlyph( self::Ptr{ImFontAtlas}, @@ -5848,14 +5848,14 @@ AddCustomRectFontGlyph( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3455). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3464). """ GetCustomRectByIndex(self::Ptr{ImFontAtlas}, index) = ImFontAtlas_GetCustomRectByIndex(self, index) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3458). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3467). """ CalcCustomRectUV( self::Ptr{ImFontAtlas}, @@ -5867,7 +5867,7 @@ CalcCustomRectUV( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3459). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3468). """ GetMouseCursorTexData( self::Ptr{ImFontAtlas}, @@ -5881,7 +5881,7 @@ GetMouseCursorTexData( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3530). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3539). """ lib.ImFont() = ImFont_ImFont() @@ -5893,35 +5893,35 @@ Destroy(self::Ptr{ImFont}) = ImFont_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3532). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3541). """ FindGlyph(self::Ptr{ImFont}, c::ImWchar) = ImFont_FindGlyph(self, c) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3533). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3542). """ FindGlyphNoFallback(self::Ptr{ImFont}, c::ImWchar) = ImFont_FindGlyphNoFallback(self, c) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3534). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3543). """ GetCharAdvance(self::Ptr{ImFont}, c::ImWchar) = ImFont_GetCharAdvance(self, c) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3535). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3544). """ IsLoaded(self::Ptr{ImFont}) = ImFont_IsLoaded(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3536). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3545). """ GetDebugName(self::Ptr{ImFont}) = ImFont_GetDebugName(self) @@ -5930,7 +5930,7 @@ $(TYPEDSIGNATURES) Utf8. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3540). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3549). """ function CalcTextSizeA( self::Ptr{ImFont}, @@ -5949,7 +5949,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3541). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3550). """ CalcWordWrapPositionA(self::Ptr{ImFont}, scale, text, text_end, wrap_width) = ImFont_CalcWordWrapPositionA(self, scale, text, text_end, wrap_width) @@ -5957,7 +5957,7 @@ CalcWordWrapPositionA(self::Ptr{ImFont}, scale, text, text_end, wrap_width) = """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3542). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3551). """ RenderChar( self::Ptr{ImFont}, @@ -5971,7 +5971,7 @@ RenderChar( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3543). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3552). """ RenderText( self::Ptr{ImFont}, @@ -5989,28 +5989,28 @@ RenderText( """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3546). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3555). """ BuildLookupTable(self::Ptr{ImFont}) = ImFont_BuildLookupTable(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3547). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3556). """ ClearOutputData(self::Ptr{ImFont}) = ImFont_ClearOutputData(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3548). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3557). """ GrowIndex(self::Ptr{ImFont}, new_size) = ImFont_GrowIndex(self, new_size) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3549). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3558). """ AddGlyph( self::Ptr{ImFont}, @@ -6032,7 +6032,7 @@ $(TYPEDSIGNATURES) Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3550). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3559). """ AddRemapChar(self::Ptr{ImFont}, dst::ImWchar, src::ImWchar, overwrite_dst = true) = ImFont_AddRemapChar(self, dst, src, overwrite_dst) @@ -6040,21 +6040,21 @@ AddRemapChar(self::Ptr{ImFont}, dst::ImWchar, src::ImWchar, overwrite_dst = true """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3551). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3560). """ SetGlyphVisible(self::Ptr{ImFont}, c::ImWchar, visible) = ImFont_SetGlyphVisible(self, c, visible) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3552). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3561). """ IsGlyphRangeUnused(self::Ptr{ImFont}, c_begin, c_last) = ImFont_IsGlyphRangeUnused(self, c_begin, c_last) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3614). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3623). """ lib.ImGuiViewport() = ImGuiViewport_ImGuiViewport() @@ -6066,7 +6066,7 @@ Destroy(self::Ptr{ImGuiViewport}) = ImGuiViewport_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3618). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3627). """ function GetCenter(self::Ptr{ImGuiViewport}) pOut = Ref{ImVec2}() @@ -6077,7 +6077,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3619). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3628). """ function GetWorkCenter(self::Ptr{ImGuiViewport}) pOut = Ref{ImVec2}() @@ -6088,7 +6088,7 @@ end """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3675). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3684). """ lib.ImGuiPlatformIO() = ImGuiPlatformIO_ImGuiPlatformIO() @@ -6100,7 +6100,7 @@ Destroy(self::Ptr{ImGuiPlatformIO}) = ImGuiPlatformIO_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3768). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3777). """ lib.ImGuiPlatformMonitor() = ImGuiPlatformMonitor_ImGuiPlatformMonitor() @@ -6112,7 +6112,7 @@ Destroy(self::Ptr{ImGuiPlatformMonitor}) = ImGuiPlatformMonitor_destroy(self) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L3778). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L3787). """ lib.ImGuiPlatformImeData() = ImGuiPlatformImeData_ImGuiPlatformImeData() @@ -6127,7 +6127,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L370). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L352). """ ImHashData(data, data_size, seed::Union{ImGuiID,Integer} = 0) = igImHashData(data, data_size, seed) @@ -6137,7 +6137,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L371). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L353). """ ImHashStr(data, data_size = 0, seed::Union{ImGuiID,Integer} = 0) = igImHashStr(data, data_size, seed) @@ -6147,7 +6147,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L375). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L357). """ ImQsort(base, count, size_of_element, compare_func) = igImQsort(base, count, size_of_element, compare_func) @@ -6157,7 +6157,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L379). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L361). """ ImAlphaBlendColors(col_a::Union{ImU32,Integer}, col_b::Union{ImU32,Integer}) = igImAlphaBlendColors(col_a, col_b) @@ -6167,7 +6167,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L382). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L364). """ ImIsPowerOfTwo(v::Integer) = igImIsPowerOfTwo_Int(v) @@ -6177,7 +6177,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L383). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L365). """ ImIsPowerOfTwo(v::ImU64) = igImIsPowerOfTwo_U64(v) @@ -6187,7 +6187,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L384). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L366). """ ImUpperPowerOfTwo(v) = igImUpperPowerOfTwo(v) @@ -6199,7 +6199,7 @@ Case insensitive compare. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L387). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L369). """ ImStricmp(str1, str2) = igImStricmp(str1, str2) @@ -6211,7 +6211,7 @@ Case insensitive compare to a certain count. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L388). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L370). """ ImStrnicmp(str1, str2, count) = igImStrnicmp(str1, str2, count) @@ -6223,7 +6223,7 @@ Copy to a certain count and always zero terminate (strncpy doesn't). !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L389). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L371). """ ImStrncpy(dst, src, count) = igImStrncpy(dst, src, count) @@ -6235,7 +6235,7 @@ Duplicate a string. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L390). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L372). """ ImStrdup(str) = igImStrdup(str) @@ -6247,7 +6247,7 @@ Copy in provided buffer, recreate buffer if needed. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L391). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L373). """ ImStrdupcpy(dst, p_dst_size, str) = igImStrdupcpy(dst, p_dst_size, str) @@ -6259,7 +6259,7 @@ Find first occurrence of 'c' in string range. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L392). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L374). """ ImStrchrRange(str_begin, str_end, c) = igImStrchrRange(str_begin, str_end, c) @@ -6271,7 +6271,7 @@ End end-of-line. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L393). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L375). """ ImStreolRange(str, str_end) = igImStreolRange(str, str_end) @@ -6283,7 +6283,7 @@ Find a substring in a string range. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L394). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L376). """ ImStristr(haystack, haystack_end, needle, needle_end) = igImStristr(haystack, haystack_end, needle, needle_end) @@ -6295,7 +6295,7 @@ Remove leading and trailing blanks from a buffer. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L395). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L377). """ ImStrTrimBlanks(str) = igImStrTrimBlanks(str) @@ -6307,7 +6307,7 @@ Find first non-blank character. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L396). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L378). """ ImStrSkipBlank(str) = igImStrSkipBlank(str) @@ -6319,22 +6319,21 @@ Computer string length (ImWchar string). !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L397). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L379). """ ImStrlenW(str::VoidablePtrOrRef{ImWchar}) = igImStrlenW(str) """ $(TYPEDSIGNATURES) -Find beginning-of-line (ImWchar string). +Find beginning-of-line. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L398). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L380). """ -ImStrbolW(buf_mid_line::VoidablePtrOrRef{ImWchar}, buf_begin::VoidablePtrOrRef{ImWchar}) = - igImStrbolW(buf_mid_line, buf_begin) +ImStrbol(buf_mid_line, buf_begin) = igImStrbol(buf_mid_line, buf_begin) """ $(TYPEDSIGNATURES) @@ -6342,7 +6341,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L400). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L382). """ ImToUpper(c) = igImToUpper(c) @@ -6352,7 +6351,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L401). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L383). """ ImCharIsBlankA(c) = igImCharIsBlankA(c) @@ -6362,7 +6361,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L402). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L384). """ ImCharIsBlankW(c) = igImCharIsBlankW(c) @@ -6372,7 +6371,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L403). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L385). """ ImCharIsXdigitA(c) = igImCharIsXdigitA(c) @@ -6382,7 +6381,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L407). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L389). """ ImFormatString(buf, buf_size, fmt) = igImFormatString(buf, buf_size, fmt) @@ -6392,7 +6391,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L409). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L391). """ ImFormatStringToTempBuffer(out_buf, out_buf_end, fmt) = igImFormatStringToTempBuffer(out_buf, out_buf_end, fmt) @@ -6402,7 +6401,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L411). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L393). """ ImParseFormatFindStart(format) = igImParseFormatFindStart(format) @@ -6412,7 +6411,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L412). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L394). """ ImParseFormatFindEnd(format) = igImParseFormatFindEnd(format) @@ -6422,7 +6421,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L413). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L395). """ ImParseFormatTrimDecorations(format, buf, buf_size) = igImParseFormatTrimDecorations(format, buf, buf_size) @@ -6432,7 +6431,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L414). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L396). """ ImParseFormatSanitizeForPrinting(fmt_in, fmt_out, fmt_out_size) = igImParseFormatSanitizeForPrinting(fmt_in, fmt_out, fmt_out_size) @@ -6443,7 +6442,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L415). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L397). """ ImParseFormatSanitizeForScanning(fmt_in, fmt_out, fmt_out_size) = igImParseFormatSanitizeForScanning(fmt_in, fmt_out, fmt_out_size) @@ -6454,7 +6453,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L416). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L398). """ ImParseFormatPrecision(format, default_value) = igImParseFormatPrecision(format, default_value) @@ -6466,7 +6465,7 @@ Return out_buf. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L419). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L401). """ ImTextCharToUtf8(out_buf, c) = igImTextCharToUtf8(out_buf, c) @@ -6478,7 +6477,7 @@ Return output UTF-8 bytes count. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L420). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L402). """ ImTextStrToUtf8(out_buf, out_buf_size, in_text::VoidablePtrOrRef{ImWchar}, in_text_end::VoidablePtrOrRef{ImWchar}) = igImTextStrToUtf8(out_buf, out_buf_size, in_text, in_text_end) @@ -6491,7 +6490,7 @@ Read one character. return input UTF-8 bytes count. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L421). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L403). """ ImTextCharFromUtf8(out_char, in_text, in_text_end) = igImTextCharFromUtf8(out_char, in_text, in_text_end) @@ -6503,7 +6502,7 @@ Return input UTF-8 bytes count. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L422). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L404). """ ImTextStrFromUtf8(out_buf::VoidablePtrOrRef{ImWchar}, out_buf_size, in_text, in_text_end, in_remaining = C_NULL) = igImTextStrFromUtf8(out_buf, out_buf_size, in_text, in_text_end, in_remaining) @@ -6516,7 +6515,7 @@ Return number of UTF-8 code-points (NOT bytes count). !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L423). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L405). """ ImTextCountCharsFromUtf8(in_text, in_text_end) = igImTextCountCharsFromUtf8(in_text, in_text_end) @@ -6528,7 +6527,7 @@ Return number of bytes to express one char in UTF-8. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L424). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L406). """ ImTextCountUtf8BytesFromChar(in_text, in_text_end) = igImTextCountUtf8BytesFromChar(in_text, in_text_end) @@ -6540,7 +6539,7 @@ Return number of bytes to express string in UTF-8. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L425). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L407). """ ImTextCountUtf8BytesFromStr(in_text::VoidablePtrOrRef{ImWchar}, in_text_end::VoidablePtrOrRef{ImWchar}) = igImTextCountUtf8BytesFromStr(in_text, in_text_end) @@ -6553,7 +6552,7 @@ Return previous UTF-8 code-point. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L426). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L408). """ ImTextFindPreviousUtf8Codepoint(in_text_start, in_text_curr) = igImTextFindPreviousUtf8Codepoint(in_text_start, in_text_curr) @@ -6566,7 +6565,7 @@ Return number of lines taken by text. trailing carriage return doesn't count as !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L427). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L409). """ ImTextCountLines(in_text, in_text_end) = igImTextCountLines(in_text, in_text_end) @@ -6576,7 +6575,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L441). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L423). """ ImFileOpen(filename, mode) = igImFileOpen(filename, mode) @@ -6586,7 +6585,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L442). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L424). """ ImFileClose(file::ImFileHandle) = igImFileClose(file) @@ -6596,7 +6595,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L443). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L425). """ ImFileGetSize(file::ImFileHandle) = igImFileGetSize(file) @@ -6606,7 +6605,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L444). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L426). """ ImFileRead(data, size::ImU64, count::ImU64, file::ImFileHandle) = igImFileRead(data, size, count, file) @@ -6616,7 +6615,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L445). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L427). """ ImFileWrite(data, size::ImU64, count::ImU64, file::ImFileHandle) = igImFileWrite(data, size, count, file) @@ -6626,7 +6625,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L449). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L431). """ ImFileLoadToMemory(filename, mode, out_file_size = C_NULL, padding_bytes = 0) = igImFileLoadToMemory(filename, mode, out_file_size, padding_bytes) @@ -6639,7 +6638,7 @@ DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the p !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L464). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L446). """ ImPow(x::Float32, y::Float32) = igImPow_Float(x, y) @@ -6649,7 +6648,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L465). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L447). """ ImPow(x::Float64, y::Float64) = igImPow_double(x, y) @@ -6661,7 +6660,7 @@ DragBehaviorT/SliderBehaviorT uses ImLog with either float/double and need the p !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L466). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L448). """ ImLog(x::Float32) = igImLog_Float(x) @@ -6671,7 +6670,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L467). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L449). """ ImLog(x::Float64) = igImLog_double(x) @@ -6681,7 +6680,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L468). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L450). """ ImAbs(x::Integer) = igImAbs_Int(x) @@ -6691,7 +6690,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L469). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L451). """ ImAbs(x::Float32) = igImAbs_Float(x) @@ -6701,7 +6700,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L470). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L452). """ ImAbs(x::Float64) = igImAbs_double(x) @@ -6713,7 +6712,7 @@ Sign operator - returns -1, 0 or 1 based on sign of argument. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L471). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L453). """ ImSign(x::Float32) = igImSign_Float(x) @@ -6723,7 +6722,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L472). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L454). """ ImSign(x::Float64) = igImSign_double(x) @@ -6733,7 +6732,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L474). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L456). """ ImRsqrt(x::Float32) = igImRsqrt_Float(x) @@ -6743,7 +6742,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L478). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L460). """ ImRsqrt(x::Float64) = igImRsqrt_double(x) @@ -6753,7 +6752,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L490). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L472). """ function ImMin(lhs::Union{ImVec2,NTuple{2}}, rhs::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6767,7 +6766,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L491). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L473). """ function ImMax(lhs::Union{ImVec2,NTuple{2}}, rhs::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6781,7 +6780,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L492). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L474). """ function ImClamp(v::Union{ImVec2,NTuple{2}}, mn::Union{ImVec2,NTuple{2}}, mx::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6795,7 +6794,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L493). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L475). """ function ImLerp(a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}, t::Float32) pOut = Ref{ImVec2}() @@ -6809,7 +6808,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L494). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L476). """ function ImLerp(a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}, t::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6823,7 +6822,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L495). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L477). """ function ImLerp(a::Union{ImVec4,NTuple{4}}, b::Union{ImVec4,NTuple{4}}, t::Float32) pOut = Ref{ImVec4}() @@ -6837,7 +6836,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L496). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L478). """ ImSaturate(f) = igImSaturate(f) @@ -6847,7 +6846,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L497). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L479). """ ImLengthSqr(lhs::Union{ImVec2,NTuple{2}}) = igImLengthSqr_Vec2(lhs) @@ -6857,7 +6856,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L498). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L480). """ ImLengthSqr(lhs::Union{ImVec4,NTuple{4}}) = igImLengthSqr_Vec4(lhs) @@ -6867,7 +6866,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L499). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L481). """ ImInvLength(lhs::Union{ImVec2,NTuple{2}}, fail_value) = igImInvLength(lhs, fail_value) @@ -6877,7 +6876,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L500). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L482). """ ImTrunc(f::Real) = igImTrunc_Float(f) @@ -6887,7 +6886,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L501). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L483). """ function ImTrunc(v::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6903,7 +6902,7 @@ Decent replacement for floorf(). !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L502). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L484). """ ImFloor(f::Real) = igImFloor_Float(f) @@ -6913,7 +6912,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L503). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L485). """ function ImFloor(v::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6927,7 +6926,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L504). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L486). """ ImModPositive(a, b) = igImModPositive(a, b) @@ -6937,7 +6936,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L505). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L487). """ ImDot(a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}) = igImDot(a, b) @@ -6947,7 +6946,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L506). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L488). """ function ImRotate(v::Union{ImVec2,NTuple{2}}, cos_a, sin_a) pOut = Ref{ImVec2}() @@ -6961,7 +6960,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L507). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L489). """ ImLinearSweep(current, target, speed) = igImLinearSweep(current, target, speed) @@ -6971,7 +6970,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L508). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L490). """ ImLinearRemapClamp(s0, s1, d0, d1, x) = igImLinearRemapClamp(s0, s1, d0, d1, x) @@ -6981,7 +6980,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L509). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L491). """ function ImMul(lhs::Union{ImVec2,NTuple{2}}, rhs::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -6995,7 +6994,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L510). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L492). """ ImIsFloatAboveGuaranteedIntegerPrecision(f) = igImIsFloatAboveGuaranteedIntegerPrecision(f) @@ -7005,7 +7004,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L511). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L493). """ ImExponentialMovingAverage(avg, sample, n) = igImExponentialMovingAverage(avg, sample, n) @@ -7015,7 +7014,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L515). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L497). """ function ImBezierCubicCalc( p1::Union{ImVec2,NTuple{2}}, @@ -7037,7 +7036,7 @@ For curves with explicit number of segments. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L516). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L498). """ function ImBezierCubicClosestPoint( p1::Union{ImVec2,NTuple{2}}, @@ -7060,7 +7059,7 @@ For auto-tessellated curves you can use tess_tol = style.CurveTessellationTol. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L517). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L499). """ function ImBezierCubicClosestPointCasteljau( p1::Union{ImVec2,NTuple{2}}, @@ -7081,7 +7080,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L518). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L500). """ function ImBezierQuadraticCalc(p1::Union{ImVec2,NTuple{2}}, p2::Union{ImVec2,NTuple{2}}, p3::Union{ImVec2,NTuple{2}}, t) pOut = Ref{ImVec2}() @@ -7095,7 +7094,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L519). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L501). """ function ImLineClosestPoint(a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}, p::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -7109,7 +7108,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L520). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L502). """ ImTriangleContainsPoint( a::Union{ImVec2,NTuple{2}}, @@ -7124,7 +7123,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L521). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L503). """ function ImTriangleClosestPoint( a::Union{ImVec2,NTuple{2}}, @@ -7143,7 +7142,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L522). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L504). """ ImTriangleBarycentricCoords( a::Union{ImVec2,NTuple{2}}, @@ -7161,7 +7160,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L523). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L505). """ ImTriangleArea(a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}, c::Union{ImVec2,NTuple{2}}) = igImTriangleArea(a, b, c) @@ -7172,7 +7171,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L524). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L506). """ ImTriangleIsClockwise(a::Union{ImVec2,NTuple{2}}, b::Union{ImVec2,NTuple{2}}, c::Union{ImVec2,NTuple{2}}) = igImTriangleIsClockwise(a, b, c) @@ -7183,7 +7182,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L532). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L514). """ lib.ImVec1() = ImVec1_ImVec1_Nil() @@ -7208,7 +7207,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L557). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L539). """ function GetCenter(self::Ptr{ImRect}) pOut = Ref{ImVec2}() @@ -7222,7 +7221,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L558). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L540). """ function GetSize(self::Ptr{ImRect}) pOut = Ref{ImVec2}() @@ -7236,7 +7235,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L559). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L541). """ GetWidth(self::Ptr{ImRect}) = ImRect_GetWidth(self) @@ -7246,7 +7245,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L560). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L542). """ GetHeight(self::Ptr{ImRect}) = ImRect_GetHeight(self) @@ -7256,7 +7255,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L561). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L543). """ GetArea(self::Ptr{ImRect}) = ImRect_GetArea(self) @@ -7268,7 +7267,7 @@ Top-left. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L562). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L544). """ function GetTL(self::Ptr{ImRect}) pOut = Ref{ImVec2}() @@ -7284,7 +7283,7 @@ Top-right. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L563). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L545). """ function GetTR(self::Ptr{ImRect}) pOut = Ref{ImVec2}() @@ -7300,7 +7299,7 @@ Bottom-left. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L564). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L546). """ function GetBL(self::Ptr{ImRect}) pOut = Ref{ImVec2}() @@ -7316,7 +7315,7 @@ Bottom-right. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L565). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L547). """ function GetBR(self::Ptr{ImRect}) pOut = Ref{ImVec2}() @@ -7330,7 +7329,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L568). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L550). """ ContainsWithPad(self::Ptr{ImRect}, p::Union{ImVec2,NTuple{2}}, pad::Union{ImVec2,NTuple{2}}) = ImRect_ContainsWithPad(self, p, pad) @@ -7341,7 +7340,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L569). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L551). """ Overlaps(self::Ptr{ImRect}, r::ImRect) = ImRect_Overlaps(self, r) @@ -7351,7 +7350,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L574). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L556). """ Translate(self::Ptr{ImRect}, d::Union{ImVec2,NTuple{2}}) = ImRect_Translate(self, d) @@ -7361,7 +7360,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L575). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L557). """ TranslateX(self::Ptr{ImRect}, dx) = ImRect_TranslateX(self, dx) @@ -7371,7 +7370,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L576). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L558). """ TranslateY(self::Ptr{ImRect}, dy) = ImRect_TranslateY(self, dy) @@ -7383,7 +7382,7 @@ Simple version, may lead to an inverted rectangle, which is fine for Contains/Ov !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L577). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L559). """ ClipWith(self::Ptr{ImRect}, r::ImRect) = ImRect_ClipWith(self, r) @@ -7395,7 +7394,7 @@ Full version, ensure both points are fully clipped. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L578). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L560). """ ClipWithFull(self::Ptr{ImRect}, r::ImRect) = ImRect_ClipWithFull(self, r) @@ -7405,7 +7404,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L579). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L561). """ Floor(self::Ptr{ImRect}) = ImRect_Floor(self) @@ -7415,7 +7414,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L580). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L562). """ IsInverted(self::Ptr{ImRect}) = ImRect_IsInverted(self) @@ -7425,7 +7424,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L581). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L563). """ function ToVec4(self::Ptr{ImRect}) pOut = Ref{ImVec4}() @@ -7439,7 +7438,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L587). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L569). """ ImBitArrayGetStorageSizeInBytes(bitcount) = igImBitArrayGetStorageSizeInBytes(bitcount) @@ -7449,7 +7448,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L588). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L570). """ ImBitArrayClearAllBits(arr::Union{VoidablePtrOrRef{ImU32},VoidablePtrOrRef{Integer}}, bitcount) = igImBitArrayClearAllBits(arr, bitcount) @@ -7460,7 +7459,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L589). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L571). """ ImBitArrayTestBit(arr::Union{VoidablePtrOrRef{ImU32},VoidablePtrOrRef{Integer}}, n) = igImBitArrayTestBit(arr, n) @@ -7470,7 +7469,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L590). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L572). """ ImBitArrayClearBit(arr::Union{VoidablePtrOrRef{ImU32},VoidablePtrOrRef{Integer}}, n) = igImBitArrayClearBit(arr, n) @@ -7480,7 +7479,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L591). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L573). """ ImBitArraySetBit(arr::Union{VoidablePtrOrRef{ImU32},VoidablePtrOrRef{Integer}}, n) = igImBitArraySetBit(arr, n) @@ -7490,7 +7489,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L592). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L574). """ ImBitArraySetBitRange(arr::Union{VoidablePtrOrRef{ImU32},VoidablePtrOrRef{Integer}}, n, n2) = igImBitArraySetBitRange(arr, n, n2) @@ -7501,7 +7500,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L628). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L610). """ Create(self::Ptr{ImBitVector}, sz) = ImBitVector_Create(self, sz) @@ -7511,7 +7510,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L629). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L611). """ Clear(self::Ptr{ImBitVector}) = ImBitVector_Clear(self) @@ -7521,7 +7520,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L630). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L612). """ TestBit(self::Ptr{ImBitVector}, n) = ImBitVector_TestBit(self, n) @@ -7531,7 +7530,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L631). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L613). """ SetBit(self::Ptr{ImBitVector}, n) = ImBitVector_SetBit(self, n) @@ -7541,7 +7540,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L632). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L614). """ ClearBit(self::Ptr{ImBitVector}, n) = ImBitVector_ClearBit(self, n) @@ -7551,7 +7550,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L750). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L732). """ Clear(self::Ptr{ImGuiTextIndex}) = ImGuiTextIndex_clear(self) @@ -7561,7 +7560,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L751). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L733). """ Size(self::Ptr{ImGuiTextIndex}) = ImGuiTextIndex_size(self) @@ -7571,7 +7570,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L752). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L734). """ Get_line_begin(self::Ptr{ImGuiTextIndex}, base, n) = ImGuiTextIndex_get_line_begin(self, base, n) @@ -7581,7 +7580,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L753). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L735). """ Get_line_end(self::Ptr{ImGuiTextIndex}, base, n) = ImGuiTextIndex_get_line_end(self, base, n) @@ -7591,7 +7590,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L754). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L736). """ Append(self::Ptr{ImGuiTextIndex}, base, old_size, new_size) = ImGuiTextIndex_append(self, base, old_size, new_size) @@ -7601,7 +7600,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L758). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L740). """ ImLowerBound( in_begin::VoidablePtrOrRef{ImGuiStoragePair}, @@ -7615,7 +7614,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L810). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L792). """ lib.ImDrawListSharedData() = ImDrawListSharedData_ImDrawListSharedData() @@ -7630,7 +7629,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L811). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L793). """ SetCircleTessellationMaxError(self::Ptr{ImDrawListSharedData}, max_error) = ImDrawListSharedData_SetCircleTessellationMaxError(self, max_error) @@ -7641,7 +7640,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L819). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L801). """ lib.ImDrawDataBuilder() = ImDrawDataBuilder_ImDrawDataBuilder() @@ -7656,7 +7655,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L831). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L813). """ GetVarPtr(self::Ptr{ImGuiDataVarInfo}, parent) = ImGuiDataVarInfo_GetVarPtr(self, parent) @@ -7666,7 +7665,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1061). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1043). """ lib.ImGuiStyleMod(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, v::Integer) = ImGuiStyleMod_ImGuiStyleMod_Int(idx, v) @@ -7682,7 +7681,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1062). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1044). """ lib.ImGuiStyleMod(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, v::Real) = ImGuiStyleMod_ImGuiStyleMod_Float(idx, v) @@ -7692,7 +7691,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1063). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1045). """ lib.ImGuiStyleMod(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}, v::Union{ImVec2,NTuple{2}}) = ImGuiStyleMod_ImGuiStyleMod_Vec2(idx, v) @@ -7703,7 +7702,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1076). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1058). """ lib.ImGuiComboPreviewData() = ImGuiComboPreviewData_ImGuiComboPreviewData() @@ -7718,7 +7717,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1109). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1091). """ lib.ImGuiMenuColumns() = ImGuiMenuColumns_ImGuiMenuColumns() @@ -7733,7 +7732,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1110). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1092). """ Update(self::Ptr{ImGuiMenuColumns}, spacing, window_reappearing) = ImGuiMenuColumns_Update(self, spacing, window_reappearing) @@ -7744,7 +7743,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1111). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1093). """ DeclColumns(self::Ptr{ImGuiMenuColumns}, w_icon, w_label, w_shortcut, w_mark) = ImGuiMenuColumns_DeclColumns(self, w_icon, w_label, w_shortcut, w_mark) @@ -7755,7 +7754,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1112). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1094). """ CalcNextTotalWidth(self::Ptr{ImGuiMenuColumns}, update_offsets) = ImGuiMenuColumns_CalcNextTotalWidth(self, update_offsets) @@ -7766,7 +7765,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1121). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1103). """ lib.ImGuiInputTextDeactivatedState() = ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState() @@ -7781,7 +7780,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1122). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1104). """ ClearFreeMemory(self::Ptr{ImGuiInputTextDeactivatedState}) = ImGuiInputTextDeactivatedState_ClearFreeMemory(self) @@ -7791,7 +7790,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1147). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1140). """ lib.ImGuiInputTextState() = ImGuiInputTextState_ImGuiInputTextState() @@ -7806,7 +7805,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1148). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1142). """ ClearText(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_ClearText(self) @@ -7816,51 +7815,39 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1149). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1143). """ ClearFreeMemory(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_ClearFreeMemory(self) """ $(TYPEDSIGNATURES) -!!! warning - This function is internal, it may change in the future. - -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1150). -""" -GetUndoAvailCount(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_GetUndoAvailCount(self) - -""" -$(TYPEDSIGNATURES) +Cannot be inline because we call in code in stb_textedit.h implementation. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1151). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1144). """ -GetRedoAvailCount(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_GetRedoAvailCount(self) +OnKeyPressed(self::Ptr{ImGuiInputTextState}, key) = ImGuiInputTextState_OnKeyPressed(self, key) """ $(TYPEDSIGNATURES) -Cannot be inline because we call in code in stb_textedit.h implementation. - !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1152). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1145). """ -OnKeyPressed(self::Ptr{ImGuiInputTextState}, key) = ImGuiInputTextState_OnKeyPressed(self, key) +OnCharPressed(self::Ptr{ImGuiInputTextState}, c) = ImGuiInputTextState_OnCharPressed(self, c) """ $(TYPEDSIGNATURES) -After a user-input the cursor stays on for a while without blinking. - !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1155). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1148). """ CursorAnimReset(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_CursorAnimReset(self) @@ -7870,7 +7857,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1156). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1149). """ CursorClamp(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_CursorClamp(self) @@ -7880,7 +7867,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1157). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1150). """ HasSelection(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_HasSelection(self) @@ -7890,7 +7877,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1158). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1151). """ ClearSelection(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_ClearSelection(self) @@ -7900,7 +7887,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1159). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1152). """ GetCursorPos(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_GetCursorPos(self) @@ -7910,7 +7897,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1160). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1153). """ GetSelectionStart(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_GetSelectionStart(self) @@ -7920,7 +7907,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1161). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1154). """ GetSelectionEnd(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_GetSelectionEnd(self) @@ -7930,7 +7917,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1162). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1155). """ SelectAll(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_SelectAll(self) @@ -7940,7 +7927,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1169). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1162). """ ReloadUserBufAndSelectAll(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_ReloadUserBufAndSelectAll(self) @@ -7950,7 +7937,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1170). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1163). """ ReloadUserBufAndKeepSelection(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_ReloadUserBufAndKeepSelection(self) @@ -7960,7 +7947,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1171). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1164). """ ReloadUserBufAndMoveToEnd(self::Ptr{ImGuiInputTextState}) = ImGuiInputTextState_ReloadUserBufAndMoveToEnd(self) @@ -7970,7 +7957,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1228). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1220). """ lib.ImGuiNextWindowData() = ImGuiNextWindowData_ImGuiNextWindowData() @@ -7985,7 +7972,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1229). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1221). """ ClearFlags(self::Ptr{ImGuiNextWindowData}) = ImGuiNextWindowData_ClearFlags(self) @@ -7995,7 +7982,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1257). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1249). """ lib.ImGuiNextItemData() = ImGuiNextItemData_ImGuiNextItemData() @@ -8012,7 +7999,7 @@ Also cleared manually by ItemAdd()! !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1258). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1250). """ ClearFlags(self::Ptr{ImGuiNextItemData}) = ImGuiNextItemData_ClearFlags(self) @@ -8022,7 +8009,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1274). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1266). """ lib.ImGuiLastItemData() = ImGuiLastItemData_ImGuiLastItemData() @@ -8037,7 +8024,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1301). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1293). """ lib.ImGuiStackSizes() = ImGuiStackSizes_ImGuiStackSizes() @@ -8052,7 +8039,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1302). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1294). """ SetToContextState(self::Ptr{ImGuiStackSizes}, ctx::VoidablePtrOrRef{ImGuiContext}) = ImGuiStackSizes_SetToContextState(self, ctx) @@ -8063,7 +8050,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1303). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1295). """ CompareWithContextState(self::Ptr{ImGuiStackSizes}, ctx::VoidablePtrOrRef{ImGuiContext}) = ImGuiStackSizes_CompareWithContextState(self, ctx) @@ -8074,7 +8061,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1327). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1319). """ lib.ImGuiPtrOrIndex(ptr::PtrOrRef{Cvoid}) = ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(ptr) @@ -8089,7 +8076,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1328). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1320). """ lib.ImGuiPtrOrIndex(index::Integer) = ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(index) @@ -8099,7 +8086,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1354). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1346). """ lib.ImGuiPopupData() = ImGuiPopupData_ImGuiPopupData() @@ -8114,7 +8101,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1435). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1427). """ lib.ImGuiInputEvent() = ImGuiInputEvent_ImGuiInputEvent() @@ -8129,7 +8116,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1455). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1447). """ lib.ImGuiKeyRoutingData() = ImGuiKeyRoutingData_ImGuiKeyRoutingData() @@ -8144,7 +8131,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1466). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1458). """ lib.ImGuiKeyRoutingTable() = ImGuiKeyRoutingTable_ImGuiKeyRoutingTable() @@ -8159,7 +8146,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1467). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1459). """ Clear(self::Ptr{ImGuiKeyRoutingTable}) = ImGuiKeyRoutingTable_Clear(self) @@ -8169,7 +8156,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1479). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1471). """ lib.ImGuiKeyOwnerData() = ImGuiKeyOwnerData_ImGuiKeyOwnerData() @@ -8184,7 +8171,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1537). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1529). """ FromIndices(min, max) = ImGuiListClipperRange_FromIndices(min, max) @@ -8194,7 +8181,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1538). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1530). """ FromPositions(y1, y2, off_min, off_max) = ImGuiListClipperRange_FromPositions(y1, y2, off_min, off_max) @@ -8204,7 +8191,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1550). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1542). """ lib.ImGuiListClipperData() = ImGuiListClipperData_ImGuiListClipperData() @@ -8219,7 +8206,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1551). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1543). """ Reset(self::Ptr{ImGuiListClipperData}, clipper::VoidablePtrOrRef{ImGuiListClipper}) = ImGuiListClipperData_Reset(self, clipper) @@ -8230,7 +8217,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1633). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1625). """ lib.ImGuiNavItemData() = ImGuiNavItemData_ImGuiNavItemData() @@ -8245,7 +8232,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1634). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1626). """ Clear(self::Ptr{ImGuiNavItemData}) = ImGuiNavItemData_Clear(self) @@ -8255,7 +8242,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1677). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1669). """ lib.ImGuiTypingSelectState() = ImGuiTypingSelectState_ImGuiTypingSelectState() @@ -8272,7 +8259,7 @@ We preserve remaining data for easier debugging. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1678). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1670). """ Clear(self::Ptr{ImGuiTypingSelectState}) = ImGuiTypingSelectState_Clear(self) @@ -8282,7 +8269,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1713). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1705). """ lib.ImGuiOldColumnData() = ImGuiOldColumnData_ImGuiOldColumnData() @@ -8297,7 +8284,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1734). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1726). """ lib.ImGuiOldColumns() = ImGuiOldColumns_ImGuiOldColumns() @@ -8312,7 +8299,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1762). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1754). """ lib.ImGuiBoxSelectState() = ImGuiBoxSelectState_ImGuiBoxSelectState() @@ -8327,7 +8314,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1792). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1784). """ lib.ImGuiMultiSelectTempData() = ImGuiMultiSelectTempData_ImGuiMultiSelectTempData() @@ -8344,7 +8331,7 @@ Zero-clear except IO as we preserve IO.Requests[] buffer allocation. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1793). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1785). """ Clear(self::Ptr{ImGuiMultiSelectTempData}) = ImGuiMultiSelectTempData_Clear(self) @@ -8354,7 +8341,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1794). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1786). """ ClearIO(self::Ptr{ImGuiMultiSelectTempData}) = ImGuiMultiSelectTempData_ClearIO(self) @@ -8364,7 +8351,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1809). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1801). """ lib.ImGuiMultiSelectState() = ImGuiMultiSelectState_ImGuiMultiSelectState() @@ -8379,7 +8366,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1914). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1906). """ lib.ImGuiDockNode(id::Union{ImGuiID,Integer}) = ImGuiDockNode_ImGuiDockNode(id) @@ -8394,7 +8381,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1916). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1908). """ IsRootNode(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsRootNode(self) @@ -8404,7 +8391,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1917). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1909). """ IsDockSpace(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsDockSpace(self) @@ -8414,7 +8401,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1918). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1910). """ IsFloatingNode(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsFloatingNode(self) @@ -8424,7 +8411,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1919). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1911). """ IsCentralNode(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsCentralNode(self) @@ -8436,7 +8423,7 @@ Hidden tab bar can be shown back by clicking the small triangle. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1920). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1912). """ IsHiddenTabBar(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsHiddenTabBar(self) @@ -8448,7 +8435,7 @@ Never show a tab bar. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1921). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1913). """ IsNoTabBar(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsNoTabBar(self) @@ -8458,7 +8445,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1922). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1914). """ IsSplitNode(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsSplitNode(self) @@ -8468,7 +8455,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1923). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1915). """ IsLeafNode(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsLeafNode(self) @@ -8478,7 +8465,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1924). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1916). """ IsEmpty(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_IsEmpty(self) @@ -8488,7 +8475,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1925). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1917). """ function Rect(self::Ptr{ImGuiDockNode}) pOut = Ref{ImRect}() @@ -8502,7 +8489,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1927). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1919). """ SetLocalFlags(self::Ptr{ImGuiDockNode}, flags::Union{ImGuiDockNodeFlags,ImGuiDockNodeFlags_,Integer}) = ImGuiDockNode_SetLocalFlags(self, flags) @@ -8513,7 +8500,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1928). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1920). """ UpdateMergedFlags(self::Ptr{ImGuiDockNode}) = ImGuiDockNode_UpdateMergedFlags(self) @@ -8523,7 +8510,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L1960). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1952). """ lib.ImGuiDockContext() = ImGuiDockContext_ImGuiDockContext() @@ -8538,7 +8525,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2000). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1993). """ lib.ImGuiViewportP() = ImGuiViewportP_ImGuiViewportP() @@ -8553,7 +8540,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2002). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1995). """ ClearRequestFlags(self::Ptr{ImGuiViewportP}) = ImGuiViewportP_ClearRequestFlags(self) @@ -8563,7 +8550,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2005). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1998). """ function CalcWorkRectPos(self::Ptr{ImGuiViewportP}, inset_min::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -8577,7 +8564,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2006). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L1999). """ function CalcWorkRectSize( self::Ptr{ImGuiViewportP}, @@ -8597,7 +8584,7 @@ Update public fields. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2007). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2000). """ UpdateWorkRect(self::Ptr{ImGuiViewportP}) = ImGuiViewportP_UpdateWorkRect(self) @@ -8607,7 +8594,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2010). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2003). """ function GetMainRect(self::Ptr{ImGuiViewportP}) pOut = Ref{ImRect}() @@ -8621,7 +8608,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2011). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2004). """ function GetWorkRect(self::Ptr{ImGuiViewportP}) pOut = Ref{ImRect}() @@ -8635,7 +8622,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2012). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2005). """ function GetBuildWorkRect(self::Ptr{ImGuiViewportP}) pOut = Ref{ImRect}() @@ -8649,7 +8636,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2037). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2030). """ lib.ImGuiWindowSettings() = ImGuiWindowSettings_ImGuiWindowSettings() @@ -8664,7 +8651,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2038). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2031). """ GetName(self::Ptr{ImGuiWindowSettings}) = ImGuiWindowSettings_GetName(self) @@ -8674,7 +8661,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2053). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2046). """ lib.ImGuiSettingsHandler() = ImGuiSettingsHandler_ImGuiSettingsHandler() @@ -8689,7 +8676,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2123). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2117). """ lib.ImGuiDebugAllocInfo() = ImGuiDebugAllocInfo_ImGuiDebugAllocInfo() @@ -8704,7 +8691,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2152). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2146). """ lib.ImGuiStackLevelInfo() = ImGuiStackLevelInfo_ImGuiStackLevelInfo() @@ -8719,7 +8706,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2165). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2159). """ lib.ImGuiIDStackTool() = ImGuiIDStackTool_ImGuiIDStackTool() @@ -8734,7 +8721,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2183). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2177). """ lib.ImGuiContextHook() = ImGuiContextHook_ImGuiContextHook() @@ -8855,7 +8842,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2554). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2550). """ lib.ImGuiContext(shared_font_atlas::VoidablePtrOrRef{ImFontAtlas}) = ImGuiContext_ImGuiContext(shared_font_atlas) @@ -8870,7 +8857,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2956). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2954). """ lib.ImGuiWindow(context::VoidablePtrOrRef{ImGuiContext}, name) = ImGuiWindow_ImGuiWindow(context, name) @@ -8885,7 +8872,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2960). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2958). """ GetID(self::Ptr{ImGuiWindow}, str::Union{String,Ptr{Cchar}}, str_end::Union{String,Ptr{Cchar},Ptr{Cvoid}} = C_NULL) = ImGuiWindow_GetID_Str(self, str, str_end) @@ -8896,7 +8883,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2961). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2959). """ GetID(self::Ptr{ImGuiWindow}, ptr::PtrOrRef{Cvoid}) = ImGuiWindow_GetID_Ptr(self, ptr) @@ -8906,7 +8893,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2962). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2960). """ GetID(self::Ptr{ImGuiWindow}, n::Integer) = ImGuiWindow_GetID_Int(self, n) @@ -8916,7 +8903,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2963). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2961). """ GetIDFromPos(self::Ptr{ImGuiWindow}, p_abs::Union{ImVec2,NTuple{2}}) = ImGuiWindow_GetIDFromPos(self, p_abs) @@ -8926,7 +8913,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2964). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2962). """ GetIDFromRectangle(self::Ptr{ImGuiWindow}, r_abs::ImRect) = ImGuiWindow_GetIDFromRectangle(self, r_abs) @@ -8936,7 +8923,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2967). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2965). """ function Rect(self::Ptr{ImGuiWindow}) pOut = Ref{ImRect}() @@ -8950,7 +8937,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2968). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2966). """ CalcFontSize(self::Ptr{ImGuiWindow}) = ImGuiWindow_CalcFontSize(self) @@ -8960,7 +8947,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2969). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2967). """ function TitleBarRect(self::Ptr{ImGuiWindow}) pOut = Ref{ImRect}() @@ -8974,7 +8961,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L2970). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L2968). """ function MenuBarRect(self::Ptr{ImGuiWindow}) pOut = Ref{ImRect}() @@ -8988,7 +8975,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3011). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3009). """ lib.ImGuiTabItem() = ImGuiTabItem_ImGuiTabItem() @@ -9003,7 +8990,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3051). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3049). """ lib.ImGuiTabBar() = ImGuiTabBar_ImGuiTabBar() @@ -9018,7 +9005,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3114). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3112). """ lib.ImGuiTableColumn() = ImGuiTableColumn_ImGuiTableColumn() @@ -9033,7 +9020,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3157). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3155). """ lib.ImGuiTableInstanceData() = ImGuiTableInstanceData_ImGuiTableInstanceData() @@ -9048,7 +9035,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3276). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3274). """ lib.ImGuiTable() = ImGuiTable_ImGuiTable() @@ -9063,7 +9050,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3304). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3302). """ lib.ImGuiTableTempData() = ImGuiTableTempData_ImGuiTableTempData() @@ -9078,7 +9065,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3319). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3317). """ lib.ImGuiTableColumnSettings() = ImGuiTableColumnSettings_ImGuiTableColumnSettings() @@ -9093,7 +9080,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3341). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3339). """ lib.ImGuiTableSettings() = ImGuiTableSettings_ImGuiTableSettings() @@ -9108,7 +9095,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3342). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3340). """ GetColumnSettings(self::Ptr{ImGuiTableSettings}) = ImGuiTableSettings_GetColumnSettings(self) @@ -9118,7 +9105,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3357). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3355). """ GetCurrentWindowRead() = igGetCurrentWindowRead() @@ -9128,7 +9115,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3358). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3356). """ GetCurrentWindow() = igGetCurrentWindow() @@ -9138,7 +9125,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3359). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3357). """ FindWindowByID(id::Union{ImGuiID,Integer}) = igFindWindowByID(id) @@ -9148,7 +9135,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3360). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3358). """ FindWindowByName(name) = igFindWindowByName(name) @@ -9158,7 +9145,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3361). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3359). """ UpdateWindowParentAndRootLinks( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9172,7 +9159,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3362). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3360). """ UpdateWindowSkipRefresh(window::VoidablePtrOrRef{ImGuiWindow}) = igUpdateWindowSkipRefresh(window) @@ -9182,7 +9169,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3363). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3361). """ function CalcWindowNextAutoFitSize(window::VoidablePtrOrRef{ImGuiWindow}) pOut = Ref{ImVec2}() @@ -9196,7 +9183,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3364). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3362). """ IsWindowChildOf( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9211,7 +9198,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3365). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3363). """ IsWindowWithinBeginStackOf(window::VoidablePtrOrRef{ImGuiWindow}, potential_parent::VoidablePtrOrRef{ImGuiWindow}) = igIsWindowWithinBeginStackOf(window, potential_parent) @@ -9222,7 +9209,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3366). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3364). """ IsWindowAbove(potential_above::VoidablePtrOrRef{ImGuiWindow}, potential_below::VoidablePtrOrRef{ImGuiWindow}) = igIsWindowAbove(potential_above, potential_below) @@ -9233,7 +9220,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3367). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3365). """ IsWindowNavFocusable(window::VoidablePtrOrRef{ImGuiWindow}) = igIsWindowNavFocusable(window) @@ -9243,7 +9230,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3368). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3366). """ SetWindowPos( window::PtrOrRef{ImGuiWindow}, @@ -9257,7 +9244,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3369). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3367). """ SetWindowSize( window::PtrOrRef{ImGuiWindow}, @@ -9271,7 +9258,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3370). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3368). """ SetWindowCollapsed(window::PtrOrRef{ImGuiWindow}, collapsed::Bool, cond::Union{ImGuiCond,ImGuiCond_,Integer} = 0) = igSetWindowCollapsed_WindowPtr(window, collapsed, cond) @@ -9282,7 +9269,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3371). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3369). """ SetWindowHitTestHole( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9296,7 +9283,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3372). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3370). """ SetWindowHiddenAndSkipItemsForCurrentFrame(window::VoidablePtrOrRef{ImGuiWindow}) = igSetWindowHiddenAndSkipItemsForCurrentFrame(window) @@ -9309,7 +9296,7 @@ You may also use SetNextWindowClass()'s FocusRouteParentWindowId field. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3373). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3371). """ SetWindowParentWindowForFocusRoute( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9322,7 +9309,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3374). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3372). """ function WindowRectAbsToRel(window::VoidablePtrOrRef{ImGuiWindow}, r::ImRect) pOut = Ref{ImRect}() @@ -9336,7 +9323,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3375). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3373). """ function WindowRectRelToAbs(window::VoidablePtrOrRef{ImGuiWindow}, r::ImRect) pOut = Ref{ImRect}() @@ -9350,7 +9337,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3376). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3374). """ function WindowPosAbsToRel(window::VoidablePtrOrRef{ImGuiWindow}, p::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -9364,7 +9351,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3377). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3375). """ function WindowPosRelToAbs(window::VoidablePtrOrRef{ImGuiWindow}, p::Union{ImVec2,NTuple{2}}) pOut = Ref{ImVec2}() @@ -9378,7 +9365,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3380). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3378). """ FocusWindow( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9391,7 +9378,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3381). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3379). """ FocusTopMostWindowUnderOne( under_this_window::VoidablePtrOrRef{ImGuiWindow}, @@ -9406,7 +9393,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3382). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3380). """ BringWindowToFocusFront(window::VoidablePtrOrRef{ImGuiWindow}) = igBringWindowToFocusFront(window) @@ -9416,7 +9403,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3383). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3381). """ BringWindowToDisplayFront(window::VoidablePtrOrRef{ImGuiWindow}) = igBringWindowToDisplayFront(window) @@ -9426,7 +9413,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3384). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3382). """ BringWindowToDisplayBack(window::VoidablePtrOrRef{ImGuiWindow}) = igBringWindowToDisplayBack(window) @@ -9436,7 +9423,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3385). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3383). """ BringWindowToDisplayBehind(window::VoidablePtrOrRef{ImGuiWindow}, above_window::VoidablePtrOrRef{ImGuiWindow}) = igBringWindowToDisplayBehind(window, above_window) @@ -9447,7 +9434,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3386). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3384). """ FindWindowDisplayIndex(window::VoidablePtrOrRef{ImGuiWindow}) = igFindWindowDisplayIndex(window) @@ -9457,7 +9444,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3387). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3385). """ FindBottomMostVisibleWindowWithinBeginStack(window::VoidablePtrOrRef{ImGuiWindow}) = igFindBottomMostVisibleWindowWithinBeginStack(window) @@ -9468,7 +9455,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3390). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3388). """ SetNextWindowRefreshPolicy(flags::Union{ImGuiWindowRefreshFlags,ImGuiWindowRefreshFlags_,Integer}) = igSetNextWindowRefreshPolicy(flags) @@ -9479,7 +9466,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3393). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3391). """ SetCurrentFont(font::VoidablePtrOrRef{ImFont}) = igSetCurrentFont(font) @@ -9489,7 +9476,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3394). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3392). """ GetDefaultFont() = igGetDefaultFont() @@ -9499,7 +9486,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3396). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3394). """ AddDrawListToDrawDataEx( draw_data::VoidablePtrOrRef{ImDrawData}, @@ -9513,7 +9500,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3399). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3397). """ Initialize() = igInitialize() @@ -9525,7 +9512,7 @@ Since 1.60 this is a _private_ function. You can call DestroyContext() to destro !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3400). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3398). """ Shutdown() = igShutdown() @@ -9535,7 +9522,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3403). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3401). """ UpdateInputEvents(trickle_fast_inputs) = igUpdateInputEvents(trickle_fast_inputs) @@ -9545,7 +9532,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3404). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3402). """ UpdateHoveredWindowAndCaptureFlags() = igUpdateHoveredWindowAndCaptureFlags() @@ -9555,7 +9542,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3406). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3404). """ StartMouseMovingWindow(window::VoidablePtrOrRef{ImGuiWindow}) = igStartMouseMovingWindow(window) @@ -9565,7 +9552,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3407). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3405). """ StartMouseMovingWindowOrNode(window::VoidablePtrOrRef{ImGuiWindow}, node::VoidablePtrOrRef{ImGuiDockNode}, undock) = igStartMouseMovingWindowOrNode(window, node, undock) @@ -9576,7 +9563,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3408). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3406). """ UpdateMouseMovingWindowNewFrame() = igUpdateMouseMovingWindowNewFrame() @@ -9586,7 +9573,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3409). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3407). """ UpdateMouseMovingWindowEndFrame() = igUpdateMouseMovingWindowEndFrame() @@ -9596,7 +9583,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3412). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3410). """ AddContextHook(context::VoidablePtrOrRef{ImGuiContext}, hook::VoidablePtrOrRef{ImGuiContextHook}) = igAddContextHook(context, hook) @@ -9607,7 +9594,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3413). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3411). """ RemoveContextHook(context::VoidablePtrOrRef{ImGuiContext}, hook_to_remove::Union{ImGuiID,Integer}) = igRemoveContextHook(context, hook_to_remove) @@ -9618,7 +9605,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3414). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3412). """ CallContextHooks(context::VoidablePtrOrRef{ImGuiContext}, type::ImGuiContextHookType) = igCallContextHooks(context, type) @@ -9629,13 +9616,15 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3417). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3415). """ TranslateWindowsInViewport( viewport::VoidablePtrOrRef{ImGuiViewportP}, old_pos::Union{ImVec2,NTuple{2}}, new_pos::Union{ImVec2,NTuple{2}}, -) = igTranslateWindowsInViewport(viewport, old_pos, new_pos) + old_size::Union{ImVec2,NTuple{2}}, + new_size::Union{ImVec2,NTuple{2}}, +) = igTranslateWindowsInViewport(viewport, old_pos, new_pos, old_size, new_size) """ $(TYPEDSIGNATURES) @@ -9643,7 +9632,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3418). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3416). """ ScaleWindowsInViewport(viewport::VoidablePtrOrRef{ImGuiViewportP}, scale) = igScaleWindowsInViewport(viewport, scale) @@ -9653,7 +9642,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3419). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3417). """ DestroyPlatformWindow(viewport::VoidablePtrOrRef{ImGuiViewportP}) = igDestroyPlatformWindow(viewport) @@ -9663,7 +9652,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3420). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3418). """ SetWindowViewport(window::VoidablePtrOrRef{ImGuiWindow}, viewport::VoidablePtrOrRef{ImGuiViewportP}) = igSetWindowViewport(window, viewport) @@ -9674,7 +9663,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3421). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3419). """ SetCurrentViewport(window::VoidablePtrOrRef{ImGuiWindow}, viewport::VoidablePtrOrRef{ImGuiViewportP}) = igSetCurrentViewport(window, viewport) @@ -9685,7 +9674,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3422). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3420). """ GetViewportPlatformMonitor(viewport::VoidablePtrOrRef{ImGuiViewport}) = igGetViewportPlatformMonitor(viewport) @@ -9695,7 +9684,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3423). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3421). """ FindHoveredViewportFromPlatformWindowStack(mouse_platform_pos::Union{ImVec2,NTuple{2}}) = igFindHoveredViewportFromPlatformWindowStack(mouse_platform_pos) @@ -9706,7 +9695,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3426). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3424). """ MarkIniSettingsDirty() = igMarkIniSettingsDirty_Nil() @@ -9716,7 +9705,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3427). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3425). """ MarkIniSettingsDirty(window::VoidablePtrOrRef{ImGuiWindow}) = igMarkIniSettingsDirty_WindowPtr(window) @@ -9726,7 +9715,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3428). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3426). """ ClearIniSettings() = igClearIniSettings() @@ -9736,7 +9725,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3429). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3427). """ AddSettingsHandler(handler::VoidablePtrOrRef{ImGuiSettingsHandler}) = igAddSettingsHandler(handler) @@ -9746,7 +9735,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3430). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3428). """ RemoveSettingsHandler(type_name) = igRemoveSettingsHandler(type_name) @@ -9756,7 +9745,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3431). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3429). """ FindSettingsHandler(type_name) = igFindSettingsHandler(type_name) @@ -9766,7 +9755,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3434). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3432). """ CreateNewWindowSettings(name) = igCreateNewWindowSettings(name) @@ -9776,7 +9765,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3435). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3433). """ FindWindowSettingsByID(id::Union{ImGuiID,Integer}) = igFindWindowSettingsByID(id) @@ -9786,7 +9775,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3436). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3434). """ FindWindowSettingsByWindow(window::VoidablePtrOrRef{ImGuiWindow}) = igFindWindowSettingsByWindow(window) @@ -9796,7 +9785,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3437). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3435). """ ClearWindowSettings(name) = igClearWindowSettings(name) @@ -9806,7 +9795,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3440). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3438). """ LocalizeRegisterEntries(entries::VoidablePtrOrRef{ImGuiLocEntry}, count) = igLocalizeRegisterEntries(entries, count) @@ -9816,7 +9805,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3441). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3439). """ LocalizeGetMsg(key::ImGuiLocKey) = igLocalizeGetMsg(key) @@ -9826,7 +9815,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3444). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3442). """ SetScrollX(window::VoidablePtrOrRef{ImGuiWindow}, scroll_x::Real) = igSetScrollX_WindowPtr(window, scroll_x) @@ -9836,7 +9825,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3445). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3443). """ SetScrollY(window::VoidablePtrOrRef{ImGuiWindow}, scroll_y::Real) = igSetScrollY_WindowPtr(window, scroll_y) @@ -9846,7 +9835,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3446). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3444). """ SetScrollFromPosX(window::VoidablePtrOrRef{ImGuiWindow}, local_x::Real, center_x_ratio::Real) = igSetScrollFromPosX_WindowPtr(window, local_x, center_x_ratio) @@ -9857,7 +9846,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3447). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3445). """ SetScrollFromPosY(window::VoidablePtrOrRef{ImGuiWindow}, local_y::Real, center_y_ratio::Real) = igSetScrollFromPosY_WindowPtr(window, local_y, center_y_ratio) @@ -9868,7 +9857,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3450). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3448). """ ScrollToItem(flags::Union{ImGuiScrollFlags,ImGuiScrollFlags_,Integer} = 0) = igScrollToItem(flags) @@ -9878,7 +9867,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3451). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3449). """ ScrollToRect( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9892,7 +9881,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3452). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3450). """ function ScrollToRectEx( window::VoidablePtrOrRef{ImGuiWindow}, @@ -9910,7 +9899,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3454). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3452). """ ScrollToBringRectIntoView(window::VoidablePtrOrRef{ImGuiWindow}, rect::ImRect) = igScrollToBringRectIntoView(window, rect) @@ -9921,7 +9910,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3458). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3456). """ GetItemStatusFlags() = igGetItemStatusFlags() @@ -9931,7 +9920,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3459). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3457). """ GetItemFlags() = igGetItemFlags() @@ -9941,7 +9930,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3460). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3458). """ GetActiveID() = igGetActiveID() @@ -9951,7 +9940,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3461). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3459). """ GetFocusID() = igGetFocusID() @@ -9961,7 +9950,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3462). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3460). """ SetActiveID(id::Union{ImGuiID,Integer}, window::VoidablePtrOrRef{ImGuiWindow}) = igSetActiveID(id, window) @@ -9971,7 +9960,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3463). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3461). """ SetFocusID(id::Union{ImGuiID,Integer}, window::VoidablePtrOrRef{ImGuiWindow}) = igSetFocusID(id, window) @@ -9981,7 +9970,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3464). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3462). """ ClearActiveID() = igClearActiveID() @@ -9991,7 +9980,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3465). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3463). """ GetHoveredID() = igGetHoveredID() @@ -10001,7 +9990,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3466). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3464). """ SetHoveredID(id::Union{ImGuiID,Integer}) = igSetHoveredID(id) @@ -10011,7 +10000,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3467). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3465). """ KeepAliveID(id::Union{ImGuiID,Integer}) = igKeepAliveID(id) @@ -10023,7 +10012,7 @@ Mark data associated to given item as "edited", used by IsItemDeactivatedAfterEd !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3468). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3466). """ MarkItemEdited(id::Union{ImGuiID,Integer}) = igMarkItemEdited(id) @@ -10035,7 +10024,7 @@ Push given value as-is at the top of the ID stack (whereas PushID combines old a !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3469). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3467). """ PushOverrideID(id::Union{ImGuiID,Integer}) = igPushOverrideID(id) @@ -10045,7 +10034,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3470). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3468). """ GetIDWithSeed( str_id_begin::Union{String,Ptr{Cchar},Ptr{Cvoid}}, @@ -10059,7 +10048,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3471). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3469). """ GetIDWithSeed(n::Integer, seed::Union{ImGuiID,Integer}) = igGetIDWithSeed_Int(n, seed) @@ -10069,7 +10058,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3474). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3472). """ ItemSize(size::Union{ImVec2,NTuple{2}}, text_baseline_y::Real = -1.0f0) = igItemSize_Vec2(size, text_baseline_y) @@ -10081,7 +10070,7 @@ FIXME: This is a misleading API since we expect CursorPos to be bb.Min. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3475). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3473). """ ItemSize(bb::ImRect, text_baseline_y::Real = -1.0f0) = igItemSize_Rect(bb, text_baseline_y) @@ -10091,7 +10080,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3476). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3474). """ ItemAdd( bb::ImRect, @@ -10106,7 +10095,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3477). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3475). """ ItemHoverable(bb::ImRect, id::Union{ImGuiID,Integer}, item_flags::Union{ImGuiItemFlags,ImGuiItemFlags_,Integer}) = igItemHoverable(bb, id, item_flags) @@ -10117,7 +10106,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3478). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3476). """ IsWindowContentHoverable( window::VoidablePtrOrRef{ImGuiWindow}, @@ -10130,7 +10119,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3479). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3477). """ IsClippedEx(bb::ImRect, id::Union{ImGuiID,Integer}) = igIsClippedEx(bb, id) @@ -10140,7 +10129,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3480). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3478). """ SetLastItemData( item_id::Union{ImGuiID,Integer}, @@ -10155,7 +10144,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3481). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3479). """ function CalcItemSize(size::Union{ImVec2,NTuple{2}}, default_w, default_h) pOut = Ref{ImVec2}() @@ -10169,7 +10158,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3482). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3480). """ CalcWrapWidthForPos(pos::Union{ImVec2,NTuple{2}}, wrap_pos_x) = igCalcWrapWidthForPos(pos, wrap_pos_x) @@ -10179,7 +10168,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3483). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3481). """ PushMultiItemsWidths(components, width_full) = igPushMultiItemsWidths(components, width_full) @@ -10189,7 +10178,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3484). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3482). """ ShrinkWidths(items::VoidablePtrOrRef{ImGuiShrinkWidthItem}, count, width_excess) = igShrinkWidths(items, count, width_excess) @@ -10200,7 +10189,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3487). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3485). """ GetStyleVarInfo(idx::Union{ImGuiStyleVar,ImGuiStyleVar_,Integer}) = igGetStyleVarInfo(idx) @@ -10210,7 +10199,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3488). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3486). """ BeginDisabledOverrideReenable() = igBeginDisabledOverrideReenable() @@ -10220,7 +10209,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3489). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3487). """ EndDisabledOverrideReenable() = igEndDisabledOverrideReenable() @@ -10232,7 +10221,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3492). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3490). """ LogBegin(type::ImGuiLogType, auto_open_depth) = igLogBegin(type, auto_open_depth) @@ -10244,7 +10233,7 @@ Start logging/capturing to internal buffer. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3493). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3491). """ LogToBuffer(auto_open_depth = -1) = igLogToBuffer(auto_open_depth) @@ -10254,7 +10243,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3494). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3492). """ LogRenderedText(ref_pos::Union{VoidablePtrOrRef{ImVec2},VoidablePtrOrRef{NTuple{2}}}, text, text_end = C_NULL) = igLogRenderedText(ref_pos, text, text_end) @@ -10265,7 +10254,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3495). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3493). """ LogSetNextTextDecoration(prefix, suffix) = igLogSetNextTextDecoration(prefix, suffix) @@ -10275,7 +10264,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3498). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3496). """ BeginChildEx( name, @@ -10291,7 +10280,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3501). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3499). """ BeginPopupEx(id::Union{ImGuiID,Integer}, extra_window_flags::Union{ImGuiWindowFlags,ImGuiWindowFlags_,Integer}) = igBeginPopupEx(id, extra_window_flags) @@ -10302,7 +10291,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3502). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3500). """ OpenPopupEx( id::Union{ImGuiID,Integer}, @@ -10315,7 +10304,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3503). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3501). """ ClosePopupToLevel(remaining, restore_focus_to_window_under_popup) = igClosePopupToLevel(remaining, restore_focus_to_window_under_popup) @@ -10326,7 +10315,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3504). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3502). """ ClosePopupsOverWindow(ref_window::VoidablePtrOrRef{ImGuiWindow}, restore_focus_to_window_under_popup) = igClosePopupsOverWindow(ref_window, restore_focus_to_window_under_popup) @@ -10337,7 +10326,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3505). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3503). """ ClosePopupsExceptModals() = igClosePopupsExceptModals() @@ -10347,7 +10336,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3506). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3504). """ IsPopupOpen(id::Union{ImGuiID,Integer}, popup_flags::Union{ImGuiPopupFlags,ImGuiPopupFlags_,Integer}) = igIsPopupOpen_ID(id, popup_flags) @@ -10358,7 +10347,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3507). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3505). """ function GetPopupAllowedExtentRect(window::VoidablePtrOrRef{ImGuiWindow}) pOut = Ref{ImRect}() @@ -10372,7 +10361,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3508). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3506). """ GetTopMostPopupModal() = igGetTopMostPopupModal() @@ -10382,7 +10371,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3509). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3507). """ GetTopMostAndVisiblePopupModal() = igGetTopMostAndVisiblePopupModal() @@ -10392,7 +10381,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3510). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3508). """ FindBlockingModal(window::VoidablePtrOrRef{ImGuiWindow}) = igFindBlockingModal(window) @@ -10402,7 +10391,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3511). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3509). """ function FindBestWindowPosForPopup(window::VoidablePtrOrRef{ImGuiWindow}) pOut = Ref{ImVec2}() @@ -10416,7 +10405,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3512). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3510). """ function FindBestWindowPosForPopupEx( ref_pos::Union{ImVec2,NTuple{2}}, @@ -10437,7 +10426,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3515). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3513). """ BeginTooltipEx( tooltip_flags::Union{ImGuiTooltipFlags,ImGuiTooltipFlags_,Integer}, @@ -10450,7 +10439,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3516). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3514). """ BeginTooltipHidden() = igBeginTooltipHidden() @@ -10460,7 +10449,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3519). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3517). """ BeginViewportSideBar( name, @@ -10476,7 +10465,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3520). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3518). """ BeginMenuEx(label, icon, enabled = true) = igBeginMenuEx(label, icon, enabled) @@ -10486,7 +10475,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3521). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3519). """ MenuItemEx(label, icon, shortcut = C_NULL, selected = false, enabled = true) = igMenuItemEx(label, icon, shortcut, selected, enabled) @@ -10497,7 +10486,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3524). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3522). """ BeginComboPopup(popup_id::Union{ImGuiID,Integer}, bb::ImRect, flags::Union{ImGuiComboFlags,ImGuiComboFlags_,Integer}) = igBeginComboPopup(popup_id, bb, flags) @@ -10508,7 +10497,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3525). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3523). """ BeginComboPreview() = igBeginComboPreview() @@ -10518,7 +10507,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3526). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3524). """ EndComboPreview() = igEndComboPreview() @@ -10528,7 +10517,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3529). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3527). """ NavInitWindow(window::VoidablePtrOrRef{ImGuiWindow}, force_reinit) = igNavInitWindow(window, force_reinit) @@ -10538,7 +10527,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3530). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3528). """ NavInitRequestApplyResult() = igNavInitRequestApplyResult() @@ -10548,7 +10537,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3531). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3529). """ NavMoveRequestButNoResultYet() = igNavMoveRequestButNoResultYet() @@ -10558,7 +10547,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3532). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3530). """ NavMoveRequestSubmit( move_dir::ImGuiDir, @@ -10573,7 +10562,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3533). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3531). """ NavMoveRequestForward( move_dir::ImGuiDir, @@ -10588,7 +10577,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3534). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3532). """ NavMoveRequestResolveWithLastItem(result::VoidablePtrOrRef{ImGuiNavItemData}) = igNavMoveRequestResolveWithLastItem(result) @@ -10599,7 +10588,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3535). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3533). """ NavMoveRequestResolveWithPastTreeNode( result::VoidablePtrOrRef{ImGuiNavItemData}, @@ -10612,7 +10601,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3536). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3534). """ NavMoveRequestCancel() = igNavMoveRequestCancel() @@ -10622,7 +10611,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3537). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3535). """ NavMoveRequestApplyResult() = igNavMoveRequestApplyResult() @@ -10632,7 +10621,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3538). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3536). """ NavMoveRequestTryWrapping( window::VoidablePtrOrRef{ImGuiWindow}, @@ -10645,7 +10634,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3539). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3537). """ NavHighlightActivated(id::Union{ImGuiID,Integer}) = igNavHighlightActivated(id) @@ -10655,7 +10644,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3540). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3538). """ NavClearPreferredPosForAxis(axis::ImGuiAxis) = igNavClearPreferredPosForAxis(axis) @@ -10665,7 +10654,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3541). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3539). """ NavRestoreHighlightAfterMove() = igNavRestoreHighlightAfterMove() @@ -10675,7 +10664,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3542). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3540). """ NavUpdateCurrentWindowIsScrollPushableX() = igNavUpdateCurrentWindowIsScrollPushableX() @@ -10685,7 +10674,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3543). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3541). """ SetNavWindow(window::VoidablePtrOrRef{ImGuiWindow}) = igSetNavWindow(window) @@ -10695,7 +10684,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3544). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3542). """ SetNavID( id::Union{ImGuiID,Integer}, @@ -10710,7 +10699,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3545). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3543). """ SetNavFocusScope(focus_scope_id::Union{ImGuiID,Integer}) = igSetNavFocusScope(focus_scope_id) @@ -10722,7 +10711,7 @@ Focus last item (no selection/activation). !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3550). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3548). """ FocusItem() = igFocusItem() @@ -10734,7 +10723,7 @@ Activate an item by ID (button, checkbox, tree node etc.). Activation is queued !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3551). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3549). """ ActivateItemByID(id::Union{ImGuiID,Integer}) = igActivateItemByID(id) @@ -10744,7 +10733,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3555). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3553). """ IsNamedKey(key::ImGuiKey) = igIsNamedKey(key) @@ -10754,7 +10743,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3556). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3554). """ IsNamedKeyOrMod(key::ImGuiKey) = igIsNamedKeyOrMod(key) @@ -10764,7 +10753,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3557). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3555). """ IsLegacyKey(key::ImGuiKey) = igIsLegacyKey(key) @@ -10774,7 +10763,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3558). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3556). """ IsKeyboardKey(key::ImGuiKey) = igIsKeyboardKey(key) @@ -10784,7 +10773,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3559). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3557). """ IsGamepadKey(key::ImGuiKey) = igIsGamepadKey(key) @@ -10794,7 +10783,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3560). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3558). """ IsMouseKey(key::ImGuiKey) = igIsMouseKey(key) @@ -10804,7 +10793,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3561). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3559). """ IsAliasKey(key::ImGuiKey) = igIsAliasKey(key) @@ -10814,7 +10803,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3562). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3560). """ IsLRModKey(key::ImGuiKey) = igIsLRModKey(key) @@ -10824,7 +10813,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3563). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3561). """ FixupKeyChord(key_chord::Union{ImGuiKeyChord,Integer}) = igFixupKeyChord(key_chord) @@ -10834,7 +10823,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3564). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3562). """ ConvertSingleModFlagToKey(key::ImGuiKey) = igConvertSingleModFlagToKey(key) @@ -10844,7 +10833,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3573). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3571). """ GetKeyData(ctx::VoidablePtrOrRef{ImGuiContext}, key::ImGuiKey) = igGetKeyData_ContextPtr(ctx, key) @@ -10854,7 +10843,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3574). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3572). """ GetKeyData(key::ImGuiKey) = igGetKeyData_Key(key) @@ -10864,7 +10853,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3575). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3573). """ GetKeyChordName(key_chord::Union{ImGuiKeyChord,Integer}) = igGetKeyChordName(key_chord) @@ -10874,7 +10863,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3576). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3574). """ MouseButtonToKey(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}) = igMouseButtonToKey(button) @@ -10884,7 +10873,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3577). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3575). """ IsMouseDragPastThreshold(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, lock_threshold = -1.0f0) = igIsMouseDragPastThreshold(button, lock_threshold) @@ -10895,7 +10884,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3578). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3576). """ function GetKeyMagnitude2d(key_left::ImGuiKey, key_right::ImGuiKey, key_up::ImGuiKey, key_down::ImGuiKey) pOut = Ref{ImVec2}() @@ -10909,7 +10898,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3579). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3577). """ GetNavTweakPressedAmount(axis::ImGuiAxis) = igGetNavTweakPressedAmount(axis) @@ -10919,7 +10908,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3580). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3578). """ CalcTypematicRepeatAmount(t0, t1, repeat_delay, repeat_rate) = igCalcTypematicRepeatAmount(t0, t1, repeat_delay, repeat_rate) @@ -10930,7 +10919,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3581). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3579). """ GetTypematicRepeatRate(flags::Union{ImGuiInputFlags,ImGuiInputFlags_,Integer}, repeat_delay, repeat_rate) = igGetTypematicRepeatRate(flags, repeat_delay, repeat_rate) @@ -10941,7 +10930,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3582). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3580). """ TeleportMousePos(pos::Union{ImVec2,NTuple{2}}) = igTeleportMousePos(pos) @@ -10951,7 +10940,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3583). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3581). """ SetActiveIdUsingAllKeyboardKeys() = igSetActiveIdUsingAllKeyboardKeys() @@ -10961,7 +10950,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3584). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3582). """ IsActiveIdUsingNavDir(dir::ImGuiDir) = igIsActiveIdUsingNavDir(dir) @@ -10971,7 +10960,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3597). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3595). """ GetKeyOwner(key::ImGuiKey) = igGetKeyOwner(key) @@ -10981,7 +10970,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3598). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3596). """ SetKeyOwner( key::ImGuiKey, @@ -10995,7 +10984,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3599). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3597). """ SetKeyOwnersForKeyChord( key::Union{ImGuiKeyChord,Integer}, @@ -11011,7 +11000,7 @@ Set key owner to last item if it is hovered or active. Equivalent to 'if (IsItem !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3600). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3598). """ SetItemKeyOwner(key::ImGuiKey, flags::Union{ImGuiInputFlags,ImGuiInputFlags_,Integer}) = igSetItemKeyOwner_InputFlags(key, flags) @@ -11024,7 +11013,7 @@ Test that key is either not owned, either owned by 'owner_id'. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3601). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3599). """ TestKeyOwner(key::ImGuiKey, owner_id::Union{ImGuiID,Integer}) = igTestKeyOwner(key, owner_id) @@ -11034,7 +11023,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3602). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3600). """ GetKeyOwnerData(ctx::VoidablePtrOrRef{ImGuiContext}, key::ImGuiKey) = igGetKeyOwnerData(ctx, key) @@ -11044,7 +11033,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3610). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3608). """ IsKeyDown(key::ImGuiKey, owner_id::Union{ImGuiID,Integer}) = igIsKeyDown_ID(key, owner_id) @@ -11056,7 +11045,7 @@ Important: when transitioning from old to new IsKeyPressed(): old API has "bool !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3611). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3609). """ IsKeyPressed( key::ImGuiKey, @@ -11070,7 +11059,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3612). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3610). """ IsKeyReleased(key::ImGuiKey, owner_id::Union{ImGuiID,Integer}) = igIsKeyReleased_ID(key, owner_id) @@ -11080,7 +11069,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3613). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3611). """ IsKeyChordPressed( key_chord::Union{ImGuiKeyChord,Integer}, @@ -11094,7 +11083,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3614). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3612). """ IsMouseDown(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, owner_id::Union{ImGuiID,Integer}) = igIsMouseDown_ID(button, owner_id) @@ -11105,7 +11094,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3615). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3613). """ IsMouseClicked( button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, @@ -11119,7 +11108,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3616). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3614). """ IsMouseReleased(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, owner_id::Union{ImGuiID,Integer}) = igIsMouseReleased_ID(button, owner_id) @@ -11130,7 +11119,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3617). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3615). """ IsMouseDoubleClicked(button::Union{ImGuiMouseButton,ImGuiMouseButton_,Integer}, owner_id::Union{ImGuiID,Integer}) = igIsMouseDoubleClicked_ID(button, owner_id) @@ -11141,7 +11130,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3633). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3631). """ Shortcut( key_chord::Union{ImGuiKeyChord,Integer}, @@ -11157,7 +11146,7 @@ Owner_id needs to be explicit and cannot be 0. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3634). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3632). """ SetShortcutRouting( key_chord::Union{ImGuiKeyChord,Integer}, @@ -11171,7 +11160,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3635). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3633). """ TestShortcutRouting(key_chord::Union{ImGuiKeyChord,Integer}, owner_id::Union{ImGuiID,Integer}) = igTestShortcutRouting(key_chord, owner_id) @@ -11182,7 +11171,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3636). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3634). """ GetShortcutRoutingData(key_chord::Union{ImGuiKeyChord,Integer}) = igGetShortcutRoutingData(key_chord) @@ -11192,7 +11181,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3640). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3638). """ DockContextInitialize(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextInitialize(ctx) @@ -11202,7 +11191,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3641). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3639). """ DockContextShutdown(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextShutdown(ctx) @@ -11214,7 +11203,7 @@ Use root_id==0 to clear all. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3642). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3640). """ DockContextClearNodes(ctx::VoidablePtrOrRef{ImGuiContext}, root_id::Union{ImGuiID,Integer}, clear_settings_refs) = igDockContextClearNodes(ctx, root_id, clear_settings_refs) @@ -11225,7 +11214,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3643). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3641). """ DockContextRebuildNodes(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextRebuildNodes(ctx) @@ -11235,7 +11224,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3644). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3642). """ DockContextNewFrameUpdateUndocking(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextNewFrameUpdateUndocking(ctx) @@ -11245,7 +11234,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3645). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3643). """ DockContextNewFrameUpdateDocking(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextNewFrameUpdateDocking(ctx) @@ -11255,7 +11244,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3646). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3644). """ DockContextEndFrame(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextEndFrame(ctx) @@ -11265,7 +11254,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3647). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3645). """ DockContextGenNodeID(ctx::VoidablePtrOrRef{ImGuiContext}) = igDockContextGenNodeID(ctx) @@ -11275,7 +11264,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3648). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3646). """ DockContextQueueDock( ctx::VoidablePtrOrRef{ImGuiContext}, @@ -11293,7 +11282,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3649). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3647). """ DockContextQueueUndockWindow(ctx::VoidablePtrOrRef{ImGuiContext}, window::VoidablePtrOrRef{ImGuiWindow}) = igDockContextQueueUndockWindow(ctx, window) @@ -11304,7 +11293,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3650). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3648). """ DockContextQueueUndockNode(ctx::VoidablePtrOrRef{ImGuiContext}, node::VoidablePtrOrRef{ImGuiDockNode}) = igDockContextQueueUndockNode(ctx, node) @@ -11315,7 +11304,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3651). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3649). """ DockContextProcessUndockWindow( ctx::VoidablePtrOrRef{ImGuiContext}, @@ -11329,7 +11318,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3652). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3650). """ DockContextProcessUndockNode(ctx::VoidablePtrOrRef{ImGuiContext}, node::VoidablePtrOrRef{ImGuiDockNode}) = igDockContextProcessUndockNode(ctx, node) @@ -11340,7 +11329,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3653). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3651). """ DockContextCalcDropPosForDocking( target::VoidablePtrOrRef{ImGuiWindow}, @@ -11366,7 +11355,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3654). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3652). """ DockContextFindNodeByID(ctx::VoidablePtrOrRef{ImGuiContext}, id::Union{ImGuiID,Integer}) = igDockContextFindNodeByID(ctx, id) @@ -11377,7 +11366,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3655). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3653). """ DockNodeWindowMenuHandler_Default( ctx::VoidablePtrOrRef{ImGuiContext}, @@ -11391,7 +11380,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3656). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3654). """ DockNodeBeginAmendTabBar(node::VoidablePtrOrRef{ImGuiDockNode}) = igDockNodeBeginAmendTabBar(node) @@ -11401,7 +11390,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3657). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3655). """ DockNodeEndAmendTabBar() = igDockNodeEndAmendTabBar() @@ -11411,7 +11400,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3658). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3656). """ DockNodeGetRootNode(node::VoidablePtrOrRef{ImGuiDockNode}) = igDockNodeGetRootNode(node) @@ -11421,7 +11410,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3659). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3657). """ DockNodeIsInHierarchyOf(node::VoidablePtrOrRef{ImGuiDockNode}, parent::VoidablePtrOrRef{ImGuiDockNode}) = igDockNodeIsInHierarchyOf(node, parent) @@ -11432,7 +11421,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3660). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3658). """ DockNodeGetDepth(node::VoidablePtrOrRef{ImGuiDockNode}) = igDockNodeGetDepth(node) @@ -11442,7 +11431,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3661). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3659). """ DockNodeGetWindowMenuButtonId(node::VoidablePtrOrRef{ImGuiDockNode}) = igDockNodeGetWindowMenuButtonId(node) @@ -11452,7 +11441,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3662). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3660). """ GetWindowDockNode() = igGetWindowDockNode() @@ -11462,7 +11451,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3663). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3661). """ GetWindowAlwaysWantOwnTabBar(window::VoidablePtrOrRef{ImGuiWindow}) = igGetWindowAlwaysWantOwnTabBar(window) @@ -11472,7 +11461,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3664). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3662). """ BeginDocked(window::VoidablePtrOrRef{ImGuiWindow}, p_open) = igBeginDocked(window, p_open) @@ -11482,7 +11471,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3665). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3663). """ BeginDockableDragDropSource(window::VoidablePtrOrRef{ImGuiWindow}) = igBeginDockableDragDropSource(window) @@ -11492,7 +11481,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3666). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3664). """ BeginDockableDragDropTarget(window::VoidablePtrOrRef{ImGuiWindow}) = igBeginDockableDragDropTarget(window) @@ -11502,7 +11491,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3667). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3665). """ SetWindowDock( window::VoidablePtrOrRef{ImGuiWindow}, @@ -11516,7 +11505,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3678). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3676). """ DockBuilderDockWindow(window_name, node_id::Union{ImGuiID,Integer}) = igDockBuilderDockWindow(window_name, node_id) @@ -11526,7 +11515,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3679). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3677). """ DockBuilderGetNode(node_id::Union{ImGuiID,Integer}) = igDockBuilderGetNode(node_id) @@ -11536,7 +11525,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3680). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3678). """ DockBuilderGetCentralNode(node_id::Union{ImGuiID,Integer}) = igDockBuilderGetCentralNode(node_id) @@ -11546,7 +11535,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3681). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3679). """ DockBuilderAddNode( node_id::Union{ImGuiID,Integer} = 0, @@ -11561,7 +11550,7 @@ Remove node and all its child, undock all windows. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3682). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3680). """ DockBuilderRemoveNode(node_id::Union{ImGuiID,Integer}) = igDockBuilderRemoveNode(node_id) @@ -11571,7 +11560,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3683). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3681). """ DockBuilderRemoveNodeDockedWindows(node_id::Union{ImGuiID,Integer}, clear_settings_refs = true) = igDockBuilderRemoveNodeDockedWindows(node_id, clear_settings_refs) @@ -11584,7 +11573,7 @@ Remove all split/hierarchy. All remaining docked windows will be re-docked to th !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3684). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3682). """ DockBuilderRemoveNodeChildNodes(node_id::Union{ImGuiID,Integer}) = igDockBuilderRemoveNodeChildNodes(node_id) @@ -11594,7 +11583,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3685). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3683). """ DockBuilderSetNodePos(node_id::Union{ImGuiID,Integer}, pos::Union{ImVec2,NTuple{2}}) = igDockBuilderSetNodePos(node_id, pos) @@ -11605,7 +11594,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3686). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3684). """ DockBuilderSetNodeSize(node_id::Union{ImGuiID,Integer}, size::Union{ImVec2,NTuple{2}}) = igDockBuilderSetNodeSize(node_id, size) @@ -11618,7 +11607,7 @@ Create 2 child nodes in this parent node. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3687). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3685). """ DockBuilderSplitNode( node_id::Union{ImGuiID,Integer}, @@ -11634,7 +11623,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3688). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3686). """ DockBuilderCopyDockSpace( src_dockspace_id::Union{ImGuiID,Integer}, @@ -11648,7 +11637,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3689). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3687). """ DockBuilderCopyNode( src_node_id::Union{ImGuiID,Integer}, @@ -11662,7 +11651,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3690). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3688). """ DockBuilderCopyWindowSettings(src_name, dst_name) = igDockBuilderCopyWindowSettings(src_name, dst_name) @@ -11672,7 +11661,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3691). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3689). """ DockBuilderFinish(node_id::Union{ImGuiID,Integer}) = igDockBuilderFinish(node_id) @@ -11682,7 +11671,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3701). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3699). """ PushFocusScope(id::Union{ImGuiID,Integer}) = igPushFocusScope(id) @@ -11692,7 +11681,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3702). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3700). """ PopFocusScope() = igPopFocusScope() @@ -11704,7 +11693,7 @@ Focus scope we are outputting into, set by PushFocusScope(). !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3703). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3701). """ GetCurrentFocusScope() = igGetCurrentFocusScope() @@ -11714,7 +11703,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3706). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3704). """ IsDragDropActive() = igIsDragDropActive() @@ -11724,7 +11713,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3707). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3705). """ BeginDragDropTargetCustom(bb::ImRect, id::Union{ImGuiID,Integer}) = igBeginDragDropTargetCustom(bb, id) @@ -11734,7 +11723,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3708). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3706). """ ClearDragDrop() = igClearDragDrop() @@ -11744,7 +11733,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3709). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3707). """ IsDragDropPayloadBeingAccepted() = igIsDragDropPayloadBeingAccepted() @@ -11754,7 +11743,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3710). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3708). """ RenderDragDropTargetRect(bb::ImRect, item_clip_rect::ImRect) = igRenderDragDropTargetRect(bb, item_clip_rect) @@ -11764,7 +11753,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3713). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3711). """ GetTypingSelectRequest( flags::Union{ImGuiTypingSelectFlags,ImGuiTypingSelectFlags_,Integer} = ImGuiTypingSelectFlags_None, @@ -11776,7 +11765,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3714). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3712). """ TypingSelectFindMatch( req::VoidablePtrOrRef{ImGuiTypingSelectRequest}, @@ -11792,7 +11781,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3715). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3713). """ TypingSelectFindNextSingleCharMatch( req::VoidablePtrOrRef{ImGuiTypingSelectRequest}, @@ -11808,7 +11797,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3716). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3714). """ TypingSelectFindBestLeadingMatch( req::VoidablePtrOrRef{ImGuiTypingSelectRequest}, @@ -11823,7 +11812,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3719). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3717). """ BeginBoxSelect( scope_rect::ImRect, @@ -11838,7 +11827,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3720). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3718). """ EndBoxSelect(scope_rect::ImRect, ms_flags::Union{ImGuiMultiSelectFlags,ImGuiMultiSelectFlags_,Integer}) = igEndBoxSelect(scope_rect, ms_flags) @@ -11849,7 +11838,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3723). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3721). """ MultiSelectItemHeader( id::Union{ImGuiID,Integer}, @@ -11867,7 +11856,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3724). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3722). """ MultiSelectItemFooter(id::Union{ImGuiID,Integer}, p_selected, p_pressed) = igMultiSelectItemFooter(id, p_selected, p_pressed) @@ -11878,7 +11867,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3725). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3723). """ MultiSelectAddSetAll(ms::VoidablePtrOrRef{ImGuiMultiSelectTempData}, selected) = igMultiSelectAddSetAll(ms, selected) @@ -11888,7 +11877,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3726). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3724). """ MultiSelectAddSetRange( ms::VoidablePtrOrRef{ImGuiMultiSelectTempData}, @@ -11904,7 +11893,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3727). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3725). """ GetBoxSelectState(id::Union{ImGuiID,Integer}) = igGetBoxSelectState(id) @@ -11914,7 +11903,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3728). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3726). """ GetMultiSelectState(id::Union{ImGuiID,Integer}) = igGetMultiSelectState(id) @@ -11924,7 +11913,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3731). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3729). """ SetWindowClipRectBeforeSetChannel(window::VoidablePtrOrRef{ImGuiWindow}, clip_rect::ImRect) = igSetWindowClipRectBeforeSetChannel(window, clip_rect) @@ -11937,7 +11926,7 @@ Setup number of columns. use an identifier to distinguish multiple column sets. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3732). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3730). """ BeginColumns(str_id, count, flags::Union{ImGuiOldColumnFlags,ImGuiOldColumnFlags_,Integer} = 0) = igBeginColumns(str_id, count, flags) @@ -11950,7 +11939,7 @@ Close columns. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3733). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3731). """ EndColumns() = igEndColumns() @@ -11960,7 +11949,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3734). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3732). """ PushColumnClipRect(column_index) = igPushColumnClipRect(column_index) @@ -11970,7 +11959,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3735). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3733). """ PushColumnsBackground() = igPushColumnsBackground() @@ -11980,7 +11969,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3736). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3734). """ PopColumnsBackground() = igPopColumnsBackground() @@ -11990,7 +11979,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3737). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3735). """ GetColumnsID(str_id, count) = igGetColumnsID(str_id, count) @@ -12000,7 +11989,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3738). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3736). """ FindOrCreateColumns(window::VoidablePtrOrRef{ImGuiWindow}, id::Union{ImGuiID,Integer}) = igFindOrCreateColumns(window, id) @@ -12011,7 +12000,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3739). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3737). """ GetColumnOffsetFromNorm(columns::VoidablePtrOrRef{ImGuiOldColumns}, offset_norm) = igGetColumnOffsetFromNorm(columns, offset_norm) @@ -12022,7 +12011,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3740). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3738). """ GetColumnNormFromOffset(columns::VoidablePtrOrRef{ImGuiOldColumns}, offset) = igGetColumnNormFromOffset(columns, offset) @@ -12032,7 +12021,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3743). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3741). """ TableOpenContextMenu(column_n = -1) = igTableOpenContextMenu(column_n) @@ -12042,7 +12031,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3744). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3742). """ TableSetColumnWidth(column_n, width) = igTableSetColumnWidth(column_n, width) @@ -12052,7 +12041,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3745). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3743). """ TableSetColumnSortDirection(column_n, sort_direction::ImGuiSortDirection, append_to_sort_specs) = igTableSetColumnSortDirection(column_n, sort_direction, append_to_sort_specs) @@ -12065,7 +12054,7 @@ Retrieve *PREVIOUS FRAME* hovered row. This difference with TableGetHoveredColum !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3746). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3744). """ TableGetHoveredRow() = igTableGetHoveredRow() @@ -12075,7 +12064,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3747). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3745). """ TableGetHeaderRowHeight() = igTableGetHeaderRowHeight() @@ -12085,7 +12074,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3748). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3746). """ TableGetHeaderAngledMaxLabelWidth() = igTableGetHeaderAngledMaxLabelWidth() @@ -12095,7 +12084,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3749). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3747). """ TablePushBackgroundChannel() = igTablePushBackgroundChannel() @@ -12105,7 +12094,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3750). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3748). """ TablePopBackgroundChannel() = igTablePopBackgroundChannel() @@ -12115,7 +12104,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3751). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3749). """ TableAngledHeadersRowEx( row_id::Union{ImGuiID,Integer}, @@ -12131,7 +12120,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3754). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3752). """ GetCurrentTable() = igGetCurrentTable() @@ -12141,7 +12130,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3755). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3753). """ TableFindByID(id::Union{ImGuiID,Integer}) = igTableFindByID(id) @@ -12151,7 +12140,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3756). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3754). """ BeginTableEx( name, @@ -12168,7 +12157,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3757). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3755). """ TableBeginInitMemory(table::VoidablePtrOrRef{ImGuiTable}, columns_count) = igTableBeginInitMemory(table, columns_count) @@ -12178,7 +12167,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3758). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3756). """ TableBeginApplyRequests(table::VoidablePtrOrRef{ImGuiTable}) = igTableBeginApplyRequests(table) @@ -12188,7 +12177,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3759). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3757). """ TableSetupDrawChannels(table::VoidablePtrOrRef{ImGuiTable}) = igTableSetupDrawChannels(table) @@ -12198,7 +12187,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3760). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3758). """ TableUpdateLayout(table::VoidablePtrOrRef{ImGuiTable}) = igTableUpdateLayout(table) @@ -12208,7 +12197,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3761). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3759). """ TableUpdateBorders(table::VoidablePtrOrRef{ImGuiTable}) = igTableUpdateBorders(table) @@ -12218,7 +12207,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3762). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3760). """ TableUpdateColumnsWeightFromWidth(table::VoidablePtrOrRef{ImGuiTable}) = igTableUpdateColumnsWeightFromWidth(table) @@ -12228,7 +12217,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3763). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3761). """ TableDrawBorders(table::VoidablePtrOrRef{ImGuiTable}) = igTableDrawBorders(table) @@ -12238,7 +12227,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3764). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3762). """ TableDrawDefaultContextMenu( table::VoidablePtrOrRef{ImGuiTable}, @@ -12251,7 +12240,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3765). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3763). """ TableBeginContextMenuPopup(table::VoidablePtrOrRef{ImGuiTable}) = igTableBeginContextMenuPopup(table) @@ -12261,7 +12250,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3766). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3764). """ TableMergeDrawChannels(table::VoidablePtrOrRef{ImGuiTable}) = igTableMergeDrawChannels(table) @@ -12271,7 +12260,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3767). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3765). """ TableGetInstanceData(table::VoidablePtrOrRef{ImGuiTable}, instance_no) = igTableGetInstanceData(table, instance_no) @@ -12281,7 +12270,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3768). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3766). """ TableGetInstanceID(table::VoidablePtrOrRef{ImGuiTable}, instance_no) = igTableGetInstanceID(table, instance_no) @@ -12291,7 +12280,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3769). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3767). """ TableSortSpecsSanitize(table::VoidablePtrOrRef{ImGuiTable}) = igTableSortSpecsSanitize(table) @@ -12301,7 +12290,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3770). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3768). """ TableSortSpecsBuild(table::VoidablePtrOrRef{ImGuiTable}) = igTableSortSpecsBuild(table) @@ -12311,7 +12300,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3771). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3769). """ TableGetColumnNextSortDirection(column::VoidablePtrOrRef{ImGuiTableColumn}) = igTableGetColumnNextSortDirection(column) @@ -12321,7 +12310,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3772). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3770). """ TableFixColumnSortDirection(table::VoidablePtrOrRef{ImGuiTable}, column::VoidablePtrOrRef{ImGuiTableColumn}) = igTableFixColumnSortDirection(table, column) @@ -12332,7 +12321,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3773). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3771). """ TableGetColumnWidthAuto(table::VoidablePtrOrRef{ImGuiTable}, column::VoidablePtrOrRef{ImGuiTableColumn}) = igTableGetColumnWidthAuto(table, column) @@ -12343,7 +12332,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3774). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3772). """ TableBeginRow(table::VoidablePtrOrRef{ImGuiTable}) = igTableBeginRow(table) @@ -12353,7 +12342,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3775). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3773). """ TableEndRow(table::VoidablePtrOrRef{ImGuiTable}) = igTableEndRow(table) @@ -12363,7 +12352,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3776). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3774). """ TableBeginCell(table::VoidablePtrOrRef{ImGuiTable}, column_n) = igTableBeginCell(table, column_n) @@ -12373,7 +12362,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3777). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3775). """ TableEndCell(table::VoidablePtrOrRef{ImGuiTable}) = igTableEndCell(table) @@ -12383,7 +12372,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3778). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3776). """ function TableGetCellBgRect(table::VoidablePtrOrRef{ImGuiTable}, column_n) pOut = Ref{ImRect}() @@ -12397,7 +12386,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3779). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3777). """ TableGetColumnName(table::VoidablePtrOrRef{ImGuiTable}, column_n::Integer) = igTableGetColumnName_TablePtr(table, column_n) @@ -12408,7 +12397,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3780). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3778). """ TableGetColumnResizeID(table::VoidablePtrOrRef{ImGuiTable}, column_n, instance_no = 0) = igTableGetColumnResizeID(table, column_n, instance_no) @@ -12419,7 +12408,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3781). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3779). """ TableCalcMaxColumnWidth(table::VoidablePtrOrRef{ImGuiTable}, column_n) = igTableCalcMaxColumnWidth(table, column_n) @@ -12429,7 +12418,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3782). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3780). """ TableSetColumnWidthAutoSingle(table::VoidablePtrOrRef{ImGuiTable}, column_n) = igTableSetColumnWidthAutoSingle(table, column_n) @@ -12440,7 +12429,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3783). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3781). """ TableSetColumnWidthAutoAll(table::VoidablePtrOrRef{ImGuiTable}) = igTableSetColumnWidthAutoAll(table) @@ -12450,7 +12439,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3784). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3782). """ TableRemove(table::VoidablePtrOrRef{ImGuiTable}) = igTableRemove(table) @@ -12460,7 +12449,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3785). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3783). """ TableGcCompactTransientBuffers(table::PtrOrRef{ImGuiTable}) = igTableGcCompactTransientBuffers_TablePtr(table) @@ -12470,7 +12459,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3786). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3784). """ TableGcCompactTransientBuffers(table::PtrOrRef{ImGuiTableTempData}) = igTableGcCompactTransientBuffers_TableTempDataPtr(table) @@ -12481,7 +12470,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3787). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3785). """ TableGcCompactSettings() = igTableGcCompactSettings() @@ -12491,7 +12480,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3790). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3788). """ TableLoadSettings(table::VoidablePtrOrRef{ImGuiTable}) = igTableLoadSettings(table) @@ -12501,7 +12490,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3791). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3789). """ TableSaveSettings(table::VoidablePtrOrRef{ImGuiTable}) = igTableSaveSettings(table) @@ -12511,7 +12500,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3792). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3790). """ TableResetSettings(table::VoidablePtrOrRef{ImGuiTable}) = igTableResetSettings(table) @@ -12521,7 +12510,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3793). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3791). """ TableGetBoundSettings(table::VoidablePtrOrRef{ImGuiTable}) = igTableGetBoundSettings(table) @@ -12531,7 +12520,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3794). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3792). """ TableSettingsAddSettingsHandler() = igTableSettingsAddSettingsHandler() @@ -12541,7 +12530,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3795). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3793). """ TableSettingsCreate(id::Union{ImGuiID,Integer}, columns_count) = igTableSettingsCreate(id, columns_count) @@ -12551,7 +12540,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3796). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3794). """ TableSettingsFindByID(id::Union{ImGuiID,Integer}) = igTableSettingsFindByID(id) @@ -12561,7 +12550,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3799). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3797). """ GetCurrentTabBar() = igGetCurrentTabBar() @@ -12571,7 +12560,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3800). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3798). """ BeginTabBarEx( tab_bar::VoidablePtrOrRef{ImGuiTabBar}, @@ -12585,7 +12574,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3801). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3799). """ TabBarFindTabByID(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab_id::Union{ImGuiID,Integer}) = igTabBarFindTabByID(tab_bar, tab_id) @@ -12596,7 +12585,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3802). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3800). """ TabBarFindTabByOrder(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, order) = igTabBarFindTabByOrder(tab_bar, order) @@ -12606,7 +12595,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3803). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3801). """ TabBarFindMostRecentlySelectedTabForActiveWindow(tab_bar::VoidablePtrOrRef{ImGuiTabBar}) = igTabBarFindMostRecentlySelectedTabForActiveWindow(tab_bar) @@ -12617,7 +12606,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3804). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3802). """ TabBarGetCurrentTab(tab_bar::VoidablePtrOrRef{ImGuiTabBar}) = igTabBarGetCurrentTab(tab_bar) @@ -12627,7 +12616,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3805). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3803). """ TabBarGetTabOrder(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab::VoidablePtrOrRef{ImGuiTabItem}) = igTabBarGetTabOrder(tab_bar, tab) @@ -12638,7 +12627,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3806). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3804). """ TabBarGetTabName(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab::VoidablePtrOrRef{ImGuiTabItem}) = igTabBarGetTabName(tab_bar, tab) @@ -12649,7 +12638,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3807). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3805). """ TabBarAddTab( tab_bar::VoidablePtrOrRef{ImGuiTabBar}, @@ -12663,7 +12652,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3808). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3806). """ TabBarRemoveTab(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab_id::Union{ImGuiID,Integer}) = igTabBarRemoveTab(tab_bar, tab_id) @@ -12674,7 +12663,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3809). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3807). """ TabBarCloseTab(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab::VoidablePtrOrRef{ImGuiTabItem}) = igTabBarCloseTab(tab_bar, tab) @@ -12685,7 +12674,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3810). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3808). """ TabBarQueueFocus(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab::VoidablePtrOrRef{ImGuiTabItem}) = igTabBarQueueFocus(tab_bar, tab) @@ -12696,7 +12685,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3811). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3809). """ TabBarQueueReorder(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, tab::VoidablePtrOrRef{ImGuiTabItem}, offset) = igTabBarQueueReorder(tab_bar, tab, offset) @@ -12707,7 +12696,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3812). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3810). """ TabBarQueueReorderFromMousePos( tab_bar::VoidablePtrOrRef{ImGuiTabBar}, @@ -12721,7 +12710,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3813). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3811). """ TabBarProcessReorder(tab_bar::VoidablePtrOrRef{ImGuiTabBar}) = igTabBarProcessReorder(tab_bar) @@ -12731,7 +12720,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3814). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3812). """ TabItemEx( tab_bar::VoidablePtrOrRef{ImGuiTabBar}, @@ -12747,7 +12736,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3815). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3813). """ function TabItemCalcSize(label::Union{String,Ptr{Cchar}}, has_close_button_or_unsaved_marker::Bool) pOut = Ref{ImVec2}() @@ -12761,7 +12750,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3816). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3814). """ function TabItemCalcSize(window::VoidablePtrOrRef{ImGuiWindow}) pOut = Ref{ImVec2}() @@ -12775,7 +12764,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3817). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3815). """ TabItemBackground( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -12790,7 +12779,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3818). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3816). """ TabItemLabelAndCloseButton( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -12822,7 +12811,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3823). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3821). """ RenderText(pos::Union{ImVec2,NTuple{2}}, text, text_end = C_NULL, hide_text_after_hash = true) = igRenderText(pos, text, text_end, hide_text_after_hash) @@ -12833,7 +12822,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3824). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3822). """ RenderTextWrapped(pos::Union{ImVec2,NTuple{2}}, text, text_end, wrap_width) = igRenderTextWrapped(pos, text, text_end, wrap_width) @@ -12844,7 +12833,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3825). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3823). """ RenderTextClipped( pos_min::Union{ImVec2,NTuple{2}}, @@ -12862,7 +12851,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3826). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3824). """ RenderTextClippedEx( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -12881,7 +12870,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3827). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3825). """ RenderTextEllipsis( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -12900,7 +12889,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3828). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3826). """ RenderFrame( p_min::Union{ImVec2,NTuple{2}}, @@ -12916,7 +12905,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3829). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3827). """ RenderFrameBorder(p_min::Union{ImVec2,NTuple{2}}, p_max::Union{ImVec2,NTuple{2}}, rounding = 0.0f0) = igRenderFrameBorder(p_min, p_max, rounding) @@ -12927,7 +12916,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3830). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3828). """ RenderColorRectWithAlphaCheckerboard( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -12948,7 +12937,7 @@ Navigation highlight. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3831). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3829). """ RenderNavHighlight( bb::ImRect, @@ -12964,7 +12953,7 @@ Find the optional ## from which we stop displaying text. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3832). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3830). """ FindRenderedTextEnd(text, text_end = C_NULL) = igFindRenderedTextEnd(text, text_end) @@ -12974,7 +12963,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3833). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3831). """ RenderMouseCursor( pos::Union{ImVec2,NTuple{2}}, @@ -12991,7 +12980,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3836). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3834). """ RenderArrow( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13007,7 +12996,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3837). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3835). """ RenderBullet(draw_list::VoidablePtrOrRef{ImDrawList}, pos::Union{ImVec2,NTuple{2}}, col::Union{ImU32,Integer}) = igRenderBullet(draw_list, pos, col) @@ -13018,7 +13007,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3838). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3836). """ RenderCheckMark(draw_list::VoidablePtrOrRef{ImDrawList}, pos::Union{ImVec2,NTuple{2}}, col::Union{ImU32,Integer}, sz) = igRenderCheckMark(draw_list, pos, col, sz) @@ -13029,7 +13018,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3839). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3837). """ RenderArrowPointingAt( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13045,7 +13034,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3840). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3838). """ RenderArrowDockMenu( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13060,7 +13049,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3841). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3839). """ RenderRectFilledRangeH( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13077,7 +13066,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3842). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3840). """ RenderRectFilledWithHole( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13093,7 +13082,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3843). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3841). """ CalcRoundingFlagsForRectInRect(r_in::ImRect, r_outer::ImRect, threshold) = igCalcRoundingFlagsForRectInRect(r_in, r_outer, threshold) @@ -13104,7 +13093,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3846). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3844). """ TextEx(text, text_end = C_NULL, flags::Union{ImGuiTextFlags,ImGuiTextFlags_,Integer} = 0) = igTextEx(text, text_end, flags) @@ -13115,7 +13104,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3847). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3845). """ ButtonEx( label, @@ -13129,7 +13118,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3848). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3846). """ ArrowButtonEx( str_id, @@ -13144,7 +13133,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3849). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3847). """ ImageButtonEx( id::Union{ImGuiID,Integer}, @@ -13163,7 +13152,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3850). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3848). """ SeparatorEx(flags::Union{ImGuiSeparatorFlags,ImGuiSeparatorFlags_,Integer}, thickness = 1.0f0) = igSeparatorEx(flags, thickness) @@ -13174,7 +13163,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3851). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3849). """ SeparatorTextEx(id::Union{ImGuiID,Integer}, label, label_end, extra_width) = igSeparatorTextEx(id, label, label_end, extra_width) @@ -13185,7 +13174,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3856). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3854). """ CloseButton(id::Union{ImGuiID,Integer}, pos::Union{ImVec2,NTuple{2}}) = igCloseButton(id, pos) @@ -13195,7 +13184,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3857). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3855). """ CollapseButton(id::Union{ImGuiID,Integer}, pos::Union{ImVec2,NTuple{2}}, dock_node::VoidablePtrOrRef{ImGuiDockNode}) = igCollapseButton(id, pos, dock_node) @@ -13206,7 +13195,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3858). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3856). """ Scrollbar(axis::ImGuiAxis) = igScrollbar(axis) @@ -13216,7 +13205,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3859). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3857). """ ScrollbarEx( bb::ImRect, @@ -13234,7 +13223,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3860). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3858). """ function GetWindowScrollbarRect(window::VoidablePtrOrRef{ImGuiWindow}, axis::ImGuiAxis) pOut = Ref{ImRect}() @@ -13248,7 +13237,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3861). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3859). """ GetWindowScrollbarID(window::VoidablePtrOrRef{ImGuiWindow}, axis::ImGuiAxis) = igGetWindowScrollbarID(window, axis) @@ -13260,7 +13249,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3862). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3860). """ GetWindowResizeCornerID(window::VoidablePtrOrRef{ImGuiWindow}, n) = igGetWindowResizeCornerID(window, n) @@ -13270,7 +13259,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3863). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3861). """ GetWindowResizeBorderID(window::VoidablePtrOrRef{ImGuiWindow}, dir::ImGuiDir) = igGetWindowResizeBorderID(window, dir) @@ -13280,7 +13269,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3866). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3864). """ ButtonBehavior( bb::ImRect, @@ -13296,7 +13285,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3867). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3865). """ DragBehavior( id::Union{ImGuiID,Integer}, @@ -13315,7 +13304,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3868). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3866). """ SliderBehavior( bb::ImRect, @@ -13335,7 +13324,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3869). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3867). """ SplitterBehavior( bb::ImRect, @@ -13356,7 +13345,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3872). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3870). """ TreeNodeBehavior( id::Union{ImGuiID,Integer}, @@ -13371,7 +13360,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3873). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3871). """ TreePushOverrideID(id::Union{ImGuiID,Integer}) = igTreePushOverrideID(id) @@ -13381,7 +13370,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3874). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3872). """ TreeNodeGetOpen(storage_id::Union{ImGuiID,Integer}) = igTreeNodeGetOpen(storage_id) @@ -13391,7 +13380,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3875). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3873). """ TreeNodeSetOpen(storage_id::Union{ImGuiID,Integer}, open) = igTreeNodeSetOpen(storage_id, open) @@ -13403,7 +13392,7 @@ Return open state. Consume previous SetNextItemOpen() data, if any. May return t !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3876). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3874). """ TreeNodeUpdateNextOpen( storage_id::Union{ImGuiID,Integer}, @@ -13416,7 +13405,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3889). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3887). """ DataTypeGetInfo(data_type::Union{ImGuiDataType,ImGuiDataType_,Integer}) = igDataTypeGetInfo(data_type) @@ -13426,7 +13415,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3890). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3888). """ DataTypeFormatString(buf, buf_size, data_type::Union{ImGuiDataType,ImGuiDataType_,Integer}, p_data, format) = igDataTypeFormatString(buf, buf_size, data_type, p_data, format) @@ -13437,7 +13426,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3891). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3889). """ DataTypeApplyOp(data_type::Union{ImGuiDataType,ImGuiDataType_,Integer}, op, output, arg_1, arg_2) = igDataTypeApplyOp(data_type, op, output, arg_1, arg_2) @@ -13448,7 +13437,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3892). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3890). """ DataTypeApplyFromText( buf, @@ -13464,7 +13453,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3893). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3891). """ DataTypeCompare(data_type::Union{ImGuiDataType,ImGuiDataType_,Integer}, arg_1, arg_2) = igDataTypeCompare(data_type, arg_1, arg_2) @@ -13475,7 +13464,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3894). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3892). """ DataTypeClamp(data_type::Union{ImGuiDataType,ImGuiDataType_,Integer}, p_data, p_min, p_max) = igDataTypeClamp(data_type, p_data, p_min, p_max) @@ -13486,7 +13475,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3897). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3895). """ InputTextEx( label, @@ -13505,7 +13494,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3898). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3896). """ InputTextDeactivateHook(id::Union{ImGuiID,Integer}) = igInputTextDeactivateHook(id) @@ -13515,7 +13504,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3899). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3897). """ TempInputText( bb::ImRect, @@ -13532,7 +13521,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3900). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3898). """ TempInputScalar( bb::ImRect, @@ -13551,7 +13540,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3901). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3899). """ TempInputIsActive(id::Union{ImGuiID,Integer}) = igTempInputIsActive(id) @@ -13563,7 +13552,7 @@ Get input text state if active. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3902). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3900). """ GetInputTextState(id::Union{ImGuiID,Integer}) = igGetInputTextState(id) @@ -13573,7 +13562,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3903). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3901). """ SetNextItemRefVal(data_type::Union{ImGuiDataType,ImGuiDataType_,Integer}, p_data) = igSetNextItemRefVal(data_type, p_data) @@ -13584,7 +13573,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3906). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3904). """ ColorTooltip(text, col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer}) = igColorTooltip(text, col, flags) @@ -13595,7 +13584,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3907). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3905). """ ColorEditOptionsPopup(col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer}) = igColorEditOptionsPopup(col, flags) @@ -13606,7 +13595,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3908). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3906). """ ColorPickerOptionsPopup(ref_col, flags::Union{ImGuiColorEditFlags,ImGuiColorEditFlags_,Integer}) = igColorPickerOptionsPopup(ref_col, flags) @@ -13617,7 +13606,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3911). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3909). """ PlotEx( plot_type::ImGuiPlotType, @@ -13649,7 +13638,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3914). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3912). """ ShadeVertsLinearColorGradientKeepAlpha( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13675,7 +13664,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3915). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3913). """ ShadeVertsLinearUV( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13694,7 +13683,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3916). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3914). """ ShadeVertsTransformPos( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13712,7 +13701,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3919). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3917). """ GcCompactTransientMiscBuffers() = igGcCompactTransientMiscBuffers() @@ -13722,7 +13711,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3920). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3918). """ GcCompactTransientWindowBuffers(window::VoidablePtrOrRef{ImGuiWindow}) = igGcCompactTransientWindowBuffers(window) @@ -13732,7 +13721,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3921). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3919). """ GcAwakeTransientWindowBuffers(window::VoidablePtrOrRef{ImGuiWindow}) = igGcAwakeTransientWindowBuffers(window) @@ -13744,7 +13733,7 @@ Size >= 0 : alloc, size = -1 : free. !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3924). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3922). """ DebugAllocHook(info::VoidablePtrOrRef{ImGuiDebugAllocInfo}, frame_count, ptr, size) = igDebugAllocHook(info, frame_count, ptr, size) @@ -13755,7 +13744,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3925). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3923). """ ErrorCheckEndFrameRecover(log_callback::Union{ImGuiErrorLogCallback,Base.CFunction,Ptr{Cvoid}}, user_data = C_NULL) = igErrorCheckEndFrameRecover(log_callback, user_data) @@ -13766,7 +13755,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3926). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3924). """ ErrorCheckEndWindowRecover(log_callback::Union{ImGuiErrorLogCallback,Base.CFunction,Ptr{Cvoid}}, user_data = C_NULL) = igErrorCheckEndWindowRecover(log_callback, user_data) @@ -13777,7 +13766,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3927). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3925). """ ErrorCheckUsingSetCursorPosToExtendParentBoundaries() = igErrorCheckUsingSetCursorPosToExtendParentBoundaries() @@ -13787,7 +13776,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3928). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3926). """ DebugDrawCursorPos(col::Union{ImU32,Integer} = 4278190335) = igDebugDrawCursorPos(col) @@ -13797,7 +13786,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3929). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3927). """ DebugDrawLineExtents(col::Union{ImU32,Integer} = 4278190335) = igDebugDrawLineExtents(col) @@ -13807,7 +13796,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3930). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3928). """ DebugDrawItemRect(col::Union{ImU32,Integer} = 4278190335) = igDebugDrawItemRect(col) @@ -13817,7 +13806,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3931). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3929). """ DebugTextUnformattedWithLocateItem(line_begin, line_end) = igDebugTextUnformattedWithLocateItem(line_begin, line_end) @@ -13829,7 +13818,7 @@ Call sparingly: only 1 at the same time! !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3932). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3930). """ DebugLocateItem(target_id::Union{ImGuiID,Integer}) = igDebugLocateItem(target_id) @@ -13841,7 +13830,7 @@ Only call on reaction to a mouse Hover: because only 1 at the same time! !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3933). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3931). """ DebugLocateItemOnHover(target_id::Union{ImGuiID,Integer}) = igDebugLocateItemOnHover(target_id) @@ -13851,7 +13840,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3934). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3932). """ DebugLocateItemResolveWithLastItem() = igDebugLocateItemResolveWithLastItem() @@ -13861,7 +13850,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3935). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3933). """ DebugBreakClearData() = igDebugBreakClearData() @@ -13871,7 +13860,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3936). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3934). """ DebugBreakButton(label, description_of_location) = igDebugBreakButton(label, description_of_location) @@ -13881,7 +13870,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3937). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3935). """ DebugBreakButtonTooltip(keyboard_only, description_of_location) = igDebugBreakButtonTooltip(keyboard_only, description_of_location) @@ -13892,7 +13881,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3938). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3936). """ ShowFontAtlas(atlas::VoidablePtrOrRef{ImFontAtlas}) = igShowFontAtlas(atlas) @@ -13902,7 +13891,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3939). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3937). """ DebugHookIdInfo( id::Union{ImGuiID,Integer}, @@ -13917,7 +13906,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3940). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3938). """ DebugNodeColumns(columns::VoidablePtrOrRef{ImGuiOldColumns}) = igDebugNodeColumns(columns) @@ -13927,7 +13916,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3941). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3939). """ DebugNodeDockNode(node::VoidablePtrOrRef{ImGuiDockNode}, label) = igDebugNodeDockNode(node, label) @@ -13937,7 +13926,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3942). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3940). """ DebugNodeDrawList( window::VoidablePtrOrRef{ImGuiWindow}, @@ -13952,7 +13941,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3943). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3941). """ DebugNodeDrawCmdShowMeshAndBoundingBox( out_draw_list::VoidablePtrOrRef{ImDrawList}, @@ -13968,7 +13957,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3944). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3942). """ DebugNodeFont(font::VoidablePtrOrRef{ImFont}) = igDebugNodeFont(font) @@ -13978,7 +13967,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3945). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3943). """ DebugNodeFontGlyph(font::VoidablePtrOrRef{ImFont}, glyph::VoidablePtrOrRef{ImFontGlyph}) = igDebugNodeFontGlyph(font, glyph) @@ -13989,7 +13978,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3946). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3944). """ DebugNodeStorage(storage::VoidablePtrOrRef{ImGuiStorage}, label) = igDebugNodeStorage(storage, label) @@ -13999,7 +13988,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3947). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3945). """ DebugNodeTabBar(tab_bar::VoidablePtrOrRef{ImGuiTabBar}, label) = igDebugNodeTabBar(tab_bar, label) @@ -14009,7 +13998,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3948). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3946). """ DebugNodeTable(table::VoidablePtrOrRef{ImGuiTable}) = igDebugNodeTable(table) @@ -14019,7 +14008,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3949). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3947). """ DebugNodeTableSettings(settings::VoidablePtrOrRef{ImGuiTableSettings}) = igDebugNodeTableSettings(settings) @@ -14029,7 +14018,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3950). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3948). """ DebugNodeInputTextState(state::VoidablePtrOrRef{ImGuiInputTextState}) = igDebugNodeInputTextState(state) @@ -14039,7 +14028,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3951). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3949). """ DebugNodeTypingSelectState(state::VoidablePtrOrRef{ImGuiTypingSelectState}) = igDebugNodeTypingSelectState(state) @@ -14049,7 +14038,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3952). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3950). """ DebugNodeMultiSelectState(state::VoidablePtrOrRef{ImGuiMultiSelectState}) = igDebugNodeMultiSelectState(state) @@ -14059,7 +14048,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3953). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3951). """ DebugNodeWindow(window::VoidablePtrOrRef{ImGuiWindow}, label) = igDebugNodeWindow(window, label) @@ -14069,7 +14058,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3954). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3952). """ DebugNodeWindowSettings(settings::VoidablePtrOrRef{ImGuiWindowSettings}) = igDebugNodeWindowSettings(settings) @@ -14079,7 +14068,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3955). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3953). """ DebugNodeWindowsList(windows::VoidablePtrOrRef{ImVector_ImGuiWindowPtr}, label) = igDebugNodeWindowsList(windows, label) @@ -14089,7 +14078,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3957). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3955). """ DebugNodeViewport(viewport::VoidablePtrOrRef{ImGuiViewportP}) = igDebugNodeViewport(viewport) @@ -14099,7 +14088,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3958). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3956). """ DebugNodePlatformMonitor(monitor::VoidablePtrOrRef{ImGuiPlatformMonitor}, label, idx) = igDebugNodePlatformMonitor(monitor, label, idx) @@ -14110,7 +14099,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3959). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3957). """ DebugRenderKeyboardPreview(draw_list::VoidablePtrOrRef{ImDrawList}) = igDebugRenderKeyboardPreview(draw_list) @@ -14120,7 +14109,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3960). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3958). """ DebugRenderViewportThumbnail( draw_list::VoidablePtrOrRef{ImDrawList}, @@ -14134,7 +14123,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3992). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3990). """ ImFontAtlasGetBuilderForStbTruetype() = igImFontAtlasGetBuilderForStbTruetype() @@ -14144,7 +14133,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3994). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3992). """ ImFontAtlasUpdateConfigDataPointers(atlas::VoidablePtrOrRef{ImFontAtlas}) = igImFontAtlasUpdateConfigDataPointers(atlas) @@ -14154,7 +14143,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3995). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3993). """ ImFontAtlasBuildInit(atlas::VoidablePtrOrRef{ImFontAtlas}) = igImFontAtlasBuildInit(atlas) @@ -14164,7 +14153,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3996). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3994). """ ImFontAtlasBuildSetupFont( atlas::VoidablePtrOrRef{ImFontAtlas}, @@ -14180,7 +14169,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3997). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3995). """ ImFontAtlasBuildPackCustomRects(atlas::VoidablePtrOrRef{ImFontAtlas}, stbrp_context_opaque) = igImFontAtlasBuildPackCustomRects(atlas, stbrp_context_opaque) @@ -14191,7 +14180,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3998). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3996). """ ImFontAtlasBuildFinish(atlas::VoidablePtrOrRef{ImFontAtlas}) = igImFontAtlasBuildFinish(atlas) @@ -14201,7 +14190,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L3999). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3997). """ ImFontAtlasBuildRender8bppRectFromString( atlas::VoidablePtrOrRef{ImFontAtlas}, @@ -14220,7 +14209,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L4000). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3998). """ ImFontAtlasBuildRender32bppRectFromString( atlas::VoidablePtrOrRef{ImFontAtlas}, @@ -14239,7 +14228,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L4001). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L3999). """ ImFontAtlasBuildMultiplyCalcLookupTable(out_table, in_multiply_factor) = igImFontAtlasBuildMultiplyCalcLookupTable(out_table, in_multiply_factor) @@ -14250,7 +14239,7 @@ $(TYPEDSIGNATURES) !!! warning This function is internal, it may change in the future. -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui_internal.h#L4002). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui_internal.h#L4000). """ ImFontAtlasBuildMultiplyRectAlpha8(table, pixels, x, y, w, h, stride) = igImFontAtlasBuildMultiplyRectAlpha8(table, pixels, x, y, w, h, stride) @@ -14260,14 +14249,14 @@ $(TYPEDSIGNATURES) Pass text data straight to log (without being displayed). -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L899). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L899). """ LogText(fmt) = igLogText(fmt) """ $(TYPEDSIGNATURES) -[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.1-docking/imgui.h#L2665). +[Upstream link](https://github.com/ocornut/imgui/blob/v1.91.2-docking/imgui.h#L2674). """ Appendf(buffer::VoidablePtrOrRef{ImGuiTextBuffer}, fmt) = ImGuiTextBuffer_appendf(buffer, fmt)